1
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でディレクトリのファイル名を一括変更する

Posted at

*自分のための備忘録です

bashとは

kernel(=OSのこと?)を操作するための言語的なもの

#ファイル名を一括変更するには

  1. 所定のディレクトリに移動する
  2. mv (変更前の名前) (変更後の名前)で変更可能
  3. ファイルが複数ある場合は,
    for i in *; do hogehoge; done
    で可能.この時の * は様々な書き方がある.例えばfigure_hoge1, figure_hoge2...などのファイル名だけが該当するなら,代わりにfigure_hoge*とすればそれらだけを触れる.*はとても使える!

また,bashでprintに該当するのはecho

1
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
1
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?