脚本shell/python
fighter_lp
这个作者很懒,什么都没留下…
展开
-
统计文件中单词出现的频率
shell脚本 #!/bin/bash #filename:word_freq.sh #function:count the frequence of the words in file if [ $# -ne 1 ] then echo "Usage: $0 filename" exit -1 fi filename=$1 egrep -o "\b[[:alpha:]]+\b" $f原创 2013-04-12 14:47:38 · 784 阅读 · 0 评论 -
迭代一个单词中的每一个字符
利用一个for循环对变量i进行迭代,迭代范围从0到字符串的长度。在每次迭代中,可以用一个特殊的技法${string:start_position:No_of_characters}从字符串中提取一个字符 for((i=0;i<${#word};i++)) do echo ${word:i:1} done原创 2013-04-12 16:55:06 · 598 阅读 · 0 评论 -
压缩javascript文件
cat file.js | tr -d '\n\t' | tr -s ' ' | sed 's:/\*.*\*/::g' | sed 's/ \?\([{}();:,]\) \?/\1/g'原创 2013-04-12 16:47:51 · 526 阅读 · 0 评论