「ShellScript」for文で変数の値を出力するサンプル
書式
for 変数 in 値1 値2 値3; do
使用例
for cft in React Vue Angular Type Java; do echo "study skill ${cft}Script" done
実行結果
# sh test.sh
study skill ReactScript
study skill VueScript
study skill AngularScript
study skill TypeScript
study skill JavaScript