我正在嘗試創建一個bash腳本,該腳本從用戶處接收命令並將其應用於特定類型的文件。 有人可以提供代碼。將命令應用於特定文件
echo "Enter your command"
read user-cm
echo "Enter the type of files (ex. php, c,)"
read filetp
find . -name "*. $filetp" -type f | xargs $user-cm
好,我發現只是改變的用戶釐米變量名的東西(mycm),並把xargs的 「$ mycm」
echo "Enter your command"
read mycm
echo "Enter the type of files (ex. php, c,)"
read filetp
find -name "*."$filetp"" -type f | xargs "$mycm"
Mhhh!?你不是已經提供了嗎? – 2014-12-07 15:33:07
是的,但不運行 – dimit 2014-12-07 15:34:44
那麼,爲什麼你不解釋,在你原來的POST和發佈錯誤?更加詳細一些 ! – 2014-12-07 15:35:08