tar cf a.tar ./b
c stands for creating a file. f indicates the filename.code
c
f
tar Jcf a.tar.xz a.tar
Zip a file to make it smaller.ip
tar xf a.tar.xz
Unzip a file.it