0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

bash ブレース展開

0
Posted at

ブレース展開

  • {}でくくった部分の任意の英数文字を生成する。
  • 階層が深い場合のファイル操作とかに便利。

ファイル一括作成

$ touch test{1..5}   #ファイル一括作成
$ ls
test1	test2	test3	test4	test5

$ rm -rf test{1..5}   #ファイル一括削除
$ ls

ファイル名変更

$ ls
test.dat
$ mv test{.dat,.log} #mv test.dat test.log
$ ls
test.log

# 階層が深いときのバックアップ退避
$ cp foo/bar/hoge{,.bk}
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?