Linux Tip: Compression – tar and exclude

A lot of times I have to recursively compress a bunch of files and folders so I can ftp them to my local for perusal. When I compress, I do this: tar -cvzf localfolder.tar.gz localfolder And that gives me a tar file of all the zipped stuff in localfolder. To decompress it on the command […]