我有一個腳本,我輸出三個東西到一個文件中。我只想撥打>
運營商一次。有沒有辦法來描述一個指令?我應該使用一個函數嗎?如何在shell中重新分組命令以避免重複的重定向?
#!/bin/sh
for i in $(ls src)
do
f=${i%.*}
echo 'first bit' > dist/$i.htm
perl myScriptThatOutputsSecondBit.pl >> dist/$i.htm
echo 'third bit' >> dist/$i.htm
done
感謝很多:) – m09