Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* パラメータ展開 - ブラケット [#v6cb2e28]
** ブラケット展開 [#ga8aaaec]
#sh(bash){{
$ touch foo{1,2,3}.txt
$ ls
foo1.txt foo2.txt foo3.txt
}}
** cpコマンドでファイル名を使いまわしたい場合 [#ra32ad78]
#sh(bash){{
$ touch 1.txt
$ cp 1.txt{,.old}
$ ls
1.txt 1.txt.old
}}
** ブラケット展開のネスト [#w06977ff]
#sh(bash){{
$ echo foo{1,2}.{txt,html}
foo1.txt foo1.html foo2.txt foo2.html
}}
** 参考 [#mffd5ba8]
https://www.cyberciti.biz/faq/explain-brace-expansion-in-...
}}
終了行:
* パラメータ展開 - ブラケット [#v6cb2e28]
** ブラケット展開 [#ga8aaaec]
#sh(bash){{
$ touch foo{1,2,3}.txt
$ ls
foo1.txt foo2.txt foo3.txt
}}
** cpコマンドでファイル名を使いまわしたい場合 [#ra32ad78]
#sh(bash){{
$ touch 1.txt
$ cp 1.txt{,.old}
$ ls
1.txt 1.txt.old
}}
** ブラケット展開のネスト [#w06977ff]
#sh(bash){{
$ echo foo{1,2}.{txt,html}
foo1.txt foo1.html foo2.txt foo2.html
}}
** 参考 [#mffd5ba8]
https://www.cyberciti.biz/faq/explain-brace-expansion-in-...
}}
ページ名: