08 2015 档案

部分用到的python代码
摘要:1 replace file extensions 2 # change .htm files to .html 3 for file in *.htm ; do mv $file `echo $file | sed 's/\(.*\.\)htm/\1html/'` ; done 4 # change .html files to .htm 5 for file in... 阅读全文
posted @ 2015-08-17 09:33 KK4SBB 阅读(431) 评论(0) 推荐(0)