积累经验吧
利用 image magick 处理图片——电脑硬盘太小,照片太大占空间,又不好删了,试着修改下尺寸:
#!/bin/sh# 参考文章:用ImageMagick命令行处理图片for img in `ls *.JPG`do convert -sample 25%x25% ${img} thm${img}done
VIM 拼写检查:开启 set spell <----> 关闭 set nospell
-------------------------------------------------------------------------------------
perldoc Spreadsheet::WriteExcel对此,perldocspec 里面说::5060: warning [p 63, 0.0i]: can't break line :5128: warning [p 64, 1.7i]: can't break line :5128: warning [p 64, 1.8i]: can't break line :5128: warning [p 64, 2.2i]: can't break line :5128: warning [p 64, 2.3i]: can't break line :5309: warning [p 66, 8.7i]: can't break line :5370: warning [p 67, 7.5i]: can't break line
Pod formatters should tolerate lines in verbatim blocks that are of any length, even if that means having to break them (possibly several times, for very long lines) to avoid text running off the side of the page. Pod formatters may warn of such line-breaking. Such warnings are particularly appropriate for lines are over 100 characters long, which are usually not intentional.
#==========================================================
Vim代码缩进设置
#==========================================================
windows XP Vim 字体设置:
"VIM字体set guifont=Consolas:h14:cANSI
转换为 html ------> :TOhtml