for each in /proc/sys/net/ipv4/conf/*doecho 0 > $each/accept_redirects
echo 0 > $each/send_redirects
done
列舉所有這個目錄下的檔案、然後在每個檔案裡用0來填充accept_redirects和send_redirects這兩個檔案、其中each為迴圈變數、$each為呼叫先前自定義的each變數值
for each /etc/*doll $each
done
另乙個這樣的應用、使用ll命令檢視所有/etc/下的檔案或資料夾
linux的shell迴圈的應用
for each in proc sys net ipv4 conf doecho 0 each accept redirects echo 0 each send redirects done 列舉所有這個目錄下的檔案 然後在每個檔案裡用0來填充accept redirects和send redi...
Linux下Shell的for迴圈語句
第一類 數字性迴圈 for1 1.sh bin bash for i 1 i 10 i do echo expr i 3 1 done for1 2.sh bin bash for i in seq 1 10 do echo expr i 3 1 done for1 3.sh bin bash fo...
Linux下Shell的for迴圈語句
第一類 數字性迴圈 for1 1.sh bin bash for i 1 i 10 i doecho expr i 3 1 done for1 2.sh bin bash for i in seq110 do echo expr i 3 1 done for1 3.sh bin bash for i...