I've been unable to compress the contents of a folder on Unix, note that I don't want to compress the directory itself but the contents inside.
so far.. to compresss the files I use:
compress /serv/test/file.sas7dbt
Lets say I want to compress all files in the folder test, how can I achieve this?
tar -cZwork? – Martin Samson Oct 31 '11 at 19:59compress. That's a very old compression program (it produces.Zfiles, if that refreshes anyone's memory). Typical Linux systems don't even have it, though I thinkgzipcan uncompresscompressed files. Newer and better compression programs includegzipandbzip2. – Keith Thompson Nov 22 '11 at 1:42