デファクトスタンダート:
新しい形式:
記事:
sudo yum install zstd
gzip -t file.gz echo $? gzip: file.gz unexpected end of file 1
zip -qr9 -e encrypt.zip target/
mkpasswd -l 16 -s 0 > zip-password.txt zip -qr9 -P "$(cat zip-password.txt)" encrypt.zip target/
unzip encrypt.zip
unzip -P <password> encrypt.zip
cd /home/;zip -qr9 taro.zip taro/
unzip taro.zip -d taro
find . -name "*.zip" -exec unzip {} \;
head -c 100m /dev/urandom > dummy100MB.img gzip dummy100MB.img
gzip -l dummy100MB.img.gz compressed uncompressed ratio uncompressed_name 104874329 104857600 -0.0% dummy100MB.img
find . -name "*.gz" | xargs -i gzip -l {} | grep -v 'uncompressed' | perl -ne '@a=split(/\s+/);printf("%.1f\t%s\n", @a[2]/1024/1024, @a[4]);' 1.9 ./test1 1.9 ./test2
PASSWORD=$(mkpasswd -l 16 -s 0) echo $PASSWORD tar cz ./exsample | openssl enc -e -aes256 -k $PASSWORD -out ./exsample.enclypted.tgz
openssl enc -d -aes256 -in exsample.enclypted.tgz | tar xz -C ./ enter aes-256-cbc decryption password: ****
yum install xz-lzma-compat
lzma [ファイル名]
unlzma [ファイル名].lzma
tar cfv - [ファイルやディレクトリ...] | lzma > [ファイル名].tar.lzma
tar cvf [ファイル名].tar.lzma --lzma [ファイルやディレクトリ...]
lzcat [ファイル名].tar.lzma | tar xfv -
tar xvf [ファイル名].tar.lzma --lzma
tar cfzh /tmp/backup.tar.gz backup/
tar cvfz /mnt/mo/home_taro_backup.tar.gz taro
tar cvfz dir.tar.gz dir -X exclude.list
tar xvfz /mnt/mo/home_taro_backup.tar.gz
tar cvfzp /mnt/mo/home_taro_backup.tar.gz taro
tar xvfzp /mnt/mo/home_taro_backup.tar.gz
tar xvfzp /mnt/mo/home_taro_backup.tar.gz -C .
tar --same-owner -cvfzp /mnt/mo/etc-backup.tar.gz /etc
cd /tmp tar --same-owner -xvfzp /mnt/mo/etc-backup.tar.gz cd /etc mv lilo.conf lilo.conf.bak cp /tmp/etc/lilo.conf .
dir1 /dir2 file1.txt
tar xvfz example.tar.gz -C ./ --strip=1