摘要: #!/bin/bash echo $1 echo $# if [ ! $# -eq 1 ]; then echo "usage: ./gbk2utf8.sh src" exit 0 fi from=$1 find $from -type d -exec mkdir -p utf8/{} \; find $from -typ... 阅读全文
posted @ 2015-10-23 14:41 katago 阅读(243) 评论(0) 推荐(0)