tldr/pages/common/mmv.md

21 lines
616 B
Markdown
Raw Normal View History

2016-01-21 23:42:37 +00:00
# mmv
> Move and rename files in bulk.
> More information: <https://manned.org/mmv.1>.
2016-01-21 23:42:37 +00:00
- Rename all files with a certain extension to a different extension:
`mmv "*{{.old_extension}}" "#1{{.new_extension}}"`
- Copy `report6part4.txt` to `./french/rapport6partie4.txt` along with all similarly named files:
2016-01-21 23:42:37 +00:00
`mmv -c "{{report*part*.txt}}" "{{./french/rapport#1partie#2.txt}}"`
2016-01-21 23:42:37 +00:00
- Append all `.txt` files into one file:
2016-01-21 23:42:37 +00:00
`mmv -a "{{*.txt}}" "{{all.txt}}"`
2016-01-21 23:42:37 +00:00
- Convert dates in filenames from "M-D-Y" format to "D-M-Y" format:
`mmv "{{[0-1][0-9]-[0-3][0-9]-[0-9][0-9][0-9][0-9].txt}}" "{{#3#4-#1#2-#5#6#7#8.txt}}"`