From 181403e7acb859180876807f902731d7923fe04b Mon Sep 17 00:00:00 2001 From: zrongh90 <397864223@qq.com> Date: Tue, 31 Oct 2017 16:00:16 +0800 Subject: [PATCH] create iconv add new iconv for code convert --- cheat/cheatsheets/iconv | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 cheat/cheatsheets/iconv diff --git a/cheat/cheatsheets/iconv b/cheat/cheatsheets/iconv new file mode 100644 index 0000000..8c396d6 --- /dev/null +++ b/cheat/cheatsheets/iconv @@ -0,0 +1,2 @@ +# convert file(iconv.src) from iso-8859-1 to utf-8 and save to /tmp/iconv.out +iconv -f iso-8859-1 -t utf-8 iconv.src -o /tmp/iconv.out