shell
sample1 for
sample2 for その2
sample3 if
sample4 while
sample5 case
shell top
top
blog
sample1 shell for その2
forの並びにワイルドカードを使うことができます。
#!/bin/sh for i in * do echo $i done
カレントディレクトリのファイルを列挙できます。
#!/bin/sh for i in *.sh do echo $i done
とすることで、 拡張子shのファイルだけを列挙できます。