Linux で連番のディレクトリ / ファイルを作成する

Linux で連番のディレクトリやファイルを作成するには以下を実行します。

1
2
mkdir dir{1..3}
touch file{1..3}.txt

これで意図した通り、連番のディレクトリ / ファイルが作成されました。

1
2
3
4
5
6
7
8
# ls -l
total 0
drwxr-xr-x 2 root root 6 Dec 18 22:17 dir1
drwxr-xr-x 2 root root 6 Dec 18 22:17 dir2
drwxr-xr-x 2 root root 6 Dec 18 22:17 dir3
-rw-r--r-- 1 root root 0 Dec 18 22:17 file1.txt
-rw-r--r-- 1 root root 0 Dec 18 22:17 file2.txt
-rw-r--r-- 1 root root 0 Dec 18 22:17 file3.txt