「Debian 11」シェルスクリプトで変数の出力のサンプル
環境
Debian 11.2
書式
echo $変数名
echo “変数名"
echo ${変数名}
操作方法
1.「test01」というスクリプトを作成します
root@arkgame:~/data# vi test01
以下のコードを入力します
#!/bin/bash str="Study Skill Become Smart" echo $str echo '$str' echo "$str" echo ${str}
2.実行権限を付与します
root@arkgame:~/data# ls -l test01
-rw-r–r– 1 root root 91 1月 22 05:39 test01
root@arkgame:~/data# chmod u+x test01
3.スクリプトを実行します
root@arkgame:~/data# ./test01
Study Skill Become Smart
$str
Study Skill Become Smart
Study Skill Become Smart