xone

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

09 2021 档案

摘要:dd if="./filename.iso" of="/dev/sdb" status="progress" conv="fsync" 阅读全文
posted @ 2021-09-15 13:55 周小百

摘要:通过iconv -l 命令查看,其支持的编码格式还不少,之间可以互相转换 转换gbk编码文件为utf-8编码文件 简洁命令:iconv -f gbk -t utf-8 index.html > aautf8.html 其中-f指的是原始文件编码,-t是输出编码 index.html 是原始文件 aa 阅读全文
posted @ 2021-09-06 15:49 周小百