13
7

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.

MacOSで正規表現を使ってファイル名を変更する

Posted at

通常のファイル名変更であればmvで済ませられますが、
MacOS環境でLinuxのrenameコマンドを使って正規表現で置換がしたかったので試してみました。

そもそもMacOSにはrenameコマンドが無いのでbrewでインストールします。

$ brew install rename

インストールが終わったら

$ rename

でインストールされているか確認します。

$ rename 'perl形式の正規表現' ファイル名

でリネームが出来ます。

仮に、ファイル名先頭に付与されている連番10文字を全てのファイルから削除したいとします。

$ rename ’s/^[0-9]{10}//‘ *

こんな感じでリネーム出来ます。

13
7
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
13
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?