1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/convmv.md

12 lines
343 B
Markdown
Raw Normal View History

2015-12-31 19:22:28 +08:00
# convmv
> Converts filenames (NOT file content) from one encoding to another
2015-12-31 19:22:28 +08:00
2016-01-04 21:50:38 +08:00
- convert encoding, dry run (without actually changes filename)
`convmv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}`
2016-01-04 21:50:38 +08:00
- convert encoding, not dry run (actually rename the file)
2015-12-31 19:22:28 +08:00
`convmv -f {{from_encoding}} -t {{to_encoding}} --notest {{input_file}}`