LoginSignup
1
0

More than 3 years have passed since last update.

Linux シェルスクリプト

Posted at

【Linux シェルスクリプト】

シェルスクリプト 構文

・if構文

if コマンド1
 コマンド2
fi

・test構文

test 条件式

・for構文

for シェル変数 in 値リスト
do 
   コマンド
done

・while構文

while コマンド1
do 
   コマンド2
done

・seq 構文

seq 終了値
seq 初期値 終了値 
seq 初期値 増分 終了値
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0