Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

129
Views
Renaming files in subfolders using zmv

Let's say I want to rename all the files inside all the subfolders of a folder from foo.txt to bar.txt using zmv.

I've tried zmv '**/foo.txt' 'bar.txt' but this creates bar.txt in the root folder. How can I keep the files in their corresponding subfolder?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You need to reference the directory part in the target. You can do that by putting the wildcards in parentheses and using $1 to refer to the part matched by the parenthetical group. The ** wildcard is a little special and requires that the parentheses are around **/, no more, no less.

zmv '(**/)foo.txt' '${1}bar.txt'

You can use the -w flag to have each wildcard automatically made into a parenthetical group.

zmv -w '**/foo.txt' '${1}bar.txt'

Or you can use the -W flag and use wildcards in the replacement text — with this flag, the wildcards in the replacement text are turned into $1, $2, etc.

zmv -W '**/foo.txt' '**/bar.txt'

Alternatively, you can use $f to refer to the source path.

zmv '**/foo.txt' '$f:r.txt'
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!