-1
我發現很難想出一個shell腳本來讀取txt文件並在壓縮時排除文本文件中提到的那些文件。 任何輸入?謝謝。如何編寫shell腳本以從文本文件中查找和排除文件
我發現很難想出一個shell腳本來讀取txt文件並在壓縮時排除文本文件中提到的那些文件。 任何輸入?謝謝。如何編寫shell腳本以從文本文件中查找和排除文件
鑑於以下文件夾
$> ls test
a b c
及以下忽略列表
$> cat ignore_list
test/b
您可以使用-x選項與列表結合,以排除某些文件:
zip -r archive test/ [email protected]_list
輸出:
從該名男子頁3210adding: test/ (stored 0%)
adding: test/c (stored 0%)
adding: test/a (stored 0%)
例子:
zip -r foo foo [email protected]