Tar command in aix
- how to zip a file in aix
- how to zip a file in aix server
- how to compress a file in aix
- how to unzip a zip file in aix
Linux how to zip a file
How to untar tar.gz file in aix...
Whenever possible, each file is replaced by one with the extension .gz.
gzip *.jpg
ls -l
Compression is generally considerably better than that achieved by bzip command (LZ77/LZ78-based compressors). Whenever possible, each file is replaced by one with the extension .bz2.
bzip2 *.jpg
ls -l
Each file is stored in single .zip {.zip-filename} file with the extension .zip.
zip data.zip *.doc
ls -l
tar -jcvf {.tbz2-file} {files}
GNU tar supports both archive compressing through gzip and bzip2. If you have more than 2 files then it is re
- how to zip a file in linux
- how to zip a file in unix