Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 256 Bytes

File metadata and controls

24 lines (20 loc) · 256 Bytes

If

if <condition> ; then
  ...
fi

For

for arg in array($@ etc...)
do
  ...
done

よく使う変数

変数 意味
$@ すべての引数の配列
$# 引数の数
$0 スクリプトパス
$1 1番目の引数