【シェルスクリプト】コメントアウト:#【使用例紹介】

雑学

備忘録になります。

# cat wrk.sh
# helloと表示
echo "hello"
echo "world"   # 右側でのコメントアウトも可能

# ./wrk.sh
hello
world

関連リンク