🐟fish shell のループ2020/10/28に公開shellfishtech while ループ "Loop forever" と表示し続ける例 while true echo "Loop forever" end for ループ file_1.txt から file_5.txt までを一気に生成する例 for x in (seq 5) touch file_$x.txt end フォルダ内の全ての .txt ファイルに対し, .bak のコピーを生成する例 for file in *.txt cp $file $file.bak end Discussion
Discussion