Quantcast
Channel: Bashタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 2811

bash ブレース展開

$
0
0

ブレース展開

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

ファイル一括作成

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

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

ファイル名変更

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

#階層が深いときのバックアップ退避$ cp foo/bar/hoge{,.bk}

Viewing all articles
Browse latest Browse all 2811

Trending Articles