查看文件的编码
enca -L zh_CN file
转换文件编码
enca -L zh_CN -x UTF-8 file // 将文件编码转换为UTF-8并覆盖原文件
enca -L zh_CN -x UTF-8 file1 file2 //不覆盖原文件
虚拟机静态IP无效
VMware 的虚拟机拷贝到另外的操作系统后,NAT方式的静态IP无效,这是因为拷贝后MAC地址发生了变化,但ifcfg文件中的MAC地址没有改变,改过就可。
Sublime 作为git的编辑器
The latest build 2181 just added support for the -w (wait) command line argument. The following configuration will allow ST2 to work as your default git editor on Windows. This will allow git to open ST2 for commit messages and such.
git config --global core.editor "'c:/program files/sublime text 2/sublime_text.exe' -w"