アニメ『冴えない彼女の育てかた 』
ただのハーレムではなく、ものづくりの情熱を感じます。主人公以外女子ですが、クリエーターを集めたら、たまたま全員女子だった、ということなんでしょう。そして想いを寄せる人がいて、その人としたいことってのが、ものづくりだったということなんでしょう。
さて今回は、空白入りファイルの作り方です。
ファイル名をクォートで囲むだけです。
takk@debian:~$ echo HELLO > 'file 0001.txt' takk@debian:~$ ls file 0001.txt takk@debian:~$
ダブルクォートも使えます。
takk@debian:~$ echo HELLO > "file 0002.txt" takk@debian:~$ ls file 0001.txt file 0002.txt takk@debian:~$
ダブルクォートが使えるので、変数も使えます。
takk@debian:~$ for i in `seq -f "%03g" 3 10`;do echo HELLO > "file $i.txt";done takk@debian:~$ ls file 0001.txt file 003.txt file 005.txt file 007.txt file 009.txt file 0002.txt file 004.txt file 006.txt file 008.txt file 010.txt takk@debian:~$
当然renameも使えます。
takk@debian:~$ find . ./file 006.txt ./file 008.txt ./file 0001.txt ./file 003.txt ./file 0002.txt ./file 007.txt ./file 010.txt ./file 004.txt ./file 009.txt ./file 005.txt takk@debian:~$ rename 's/000/00/' *000?.* takk@debian:~$ find . ./file 001.txt ./file 006.txt ./file 002.txt ./file 008.txt ./file 003.txt ./file 007.txt ./file 010.txt ./file 004.txt ./file 009.txt ./file 005.txt takk@debian:~$
コメント