1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-24 08:06:18 +02:00
tldr/pages/common/convmv.md

13 lines
415 B
Markdown
Raw Normal View History

2015-12-31 19:22:28 +08:00
# convmv
2016-01-22 01:15:34 +00:00
> Convert filenames (NOT file content) from one encoding to another.
2019-04-12 13:47:24 -03:00
> Homepage: <https://www.j3e.de/linux/convmv/man/>.
2015-12-31 19:22:28 +08:00
2016-01-22 01:15:34 +00:00
- Test filename encoding conversion (don't actually change the filename):
`convmv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}`
2017-07-20 20:53:15 +02:00
- Convert filename encoding and rename the file to the new encoding:
2015-12-31 19:22:28 +08:00
`convmv -f {{from_encoding}} -t {{to_encoding}} --notest {{input_file}}`