如何排除我的腳本正在做什麼並且只有echo的打印?帶有條件迴響的Shell腳本
例如,我正在爲一個目錄制定目標,我不希望它所有tar文件都只能回顯echo命令。
#! /bin/bash
clear
echo "Compressing the files"
cd ~/LegendaryXeo/html/
tar --exclude=".git" -cvf site.tar *
mv site.tar ~/LegendaryXeo/work/
cd ~/LegendaryXeo/work/
clear
echo "Extracting the site"
tar -xvf site.tar
echo "Deleting Tar"
cd ~/LegendaryXeo/work/
rm -f site.tar
clear
echo "Copying files to server"
scp -r ~/LegendaryXeo/work/* [email protected]:~/../../domains/
如果你不想tar發射輸出,爲什麼你通過它-v? –
我拿出了那個 – Xeo
哇...我遲到了.. – Xeo