在Shell腳本中,echo命令用于在終端輸出文本或者變量的值。
使用方式:
輸出文本:
echo "Hello, World!" # 輸出Hello, World!
輸出變量的值:
name="Alice"
echo "My name is $name" # 輸出My name is Alice
使用轉義字符:
echo "This is a \"quoted\" text" # 輸出This is a "quoted" text
輸出多行文本:
echo "Line 1
Line 2
Line 3" # 輸出三行文本
輸出到文件:
echo "This is some text" > output.txt # 將文本輸出到output.txt文件中
echo "This is some more text" >> output.txt # 將文本追加到output.txt文件末尾
注意事項:
>
操作符將輸出重定向到文件時,會覆蓋文件內容;使用>>
操作符則會將輸出追加到文件末尾。