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/nkf.md
Vítor Henrique 5edbf734fb
pages*: improve page descriptions (#12558)
* pages*: improve page descriptions

* ical: improve page description

* cockpit-desktop: remove unneeded word from page description

* nc: improve description wording

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-04-25 19:58:21 -03:00

28 lines
634 B
Markdown

# nkf
> Network kanji filter: convert kanji code from one encoding to another.
> More information: <https://manned.org/nkf>.
- Convert to UTF-8 encoding:
`nkf -w {{path/to/file.txt}}`
- Convert to SHIFT_JIS encoding:
`nkf -s {{path/to/file.txt}}`
- Convert to UTF-8 encoding and overwrite the file:
`nkf -w --overwrite {{path/to/file.txt}}`
- Use LF as the new line code and overwrite (UNIX type):
`nkf -d --overwrite {{path/to/file.txt}}`
- Use CRLF as the new line code and overwrite (windows type):
`nkf -c --overwrite {{path/to/file.txt}}`
- Decrypt mime file and overwrite:
`nkf -m --overwrite {{path/to/file.txt}}`