Gzip

gzip 倍數目錄到另一個目錄中的檔案中

  • April 30, 2020

/home我想將 中的每個目錄單獨備份.tar.gz files/backup目錄中。這裡舉個例子。我知道如何壓縮它們。但不確定,如何將其發送到另一個目錄。

/home/ab123456, /home/ertoto, /home/mange
/backup/ab123456.tar.gz, /backup/ertoto.tar.gz, /backup/mange.tar.gz

您可以遍歷的內容/home

cd /home

for file in */; do tar czf /backup/"$file".tar.gz "$file";done

引用自:https://unix.stackexchange.com/questions/583458