「ShellScript」コメントを記述するサンプル

書式
#行頭
行途中#コメント内容
使用例

#!/bin/bash
#
# コメント内容
#
 
echo "study skill in arkgame." # 行の途中からコメントを書く

echo 'study skill in arkgame. #シングルクォートで囲む文字列AA'
 
echo "study skill in arkgame. #ダブルクォートで囲む文字列BB"

実行結果
# sh test10.sh
study skill in arkgame.
study skill in arkgame. #シングルクォートで囲む文字列AA
study skill in arkgame. #ダブルクォートで囲む文字列BB

shellscript

Posted by arkgame