0
目前我正在做備份mysql數據的bash腳本,唯一的問題是tar
的參數debian
正在工作,但它不能在FreeBSD
上工作。添加到tar後刪除文件
是的,我已閱讀本: Deleting files after adding to tar archive
答案是,我總是使用上debian
的解決方案 - 我指的是--remove-files
參數。
在FreeBSD上執行以下命令:
tar --remove-files -jcPf $DIR/$Y/$M/$D/mysql-$HOUR.tar.bz2 *.sql
拋出以下錯誤:
tar: Option --remove-files is not supported
我還沒有發現類似--remove-files
PARAM什麼。同時閱讀man tar
,那麼解決方案是什麼?
'xargs rm' does not works,it leave the files without remove them。 – Scott
嘗試添加-f選項:... | xargs rm -f – ishi