- 浏览: 1200 次
- 性别:
- 来自: 北京
最新评论
文章列表
A distributed system is one in which components located at networked computers communicate and coordinate their actions only by passing messages
统计功能,冒号命令:
:%s/./&/gn 统计字符数
:%s/\i\+/&/gn 统计单词数
:%s/^//n 统计行数
:%s/keyword/&/g 统计任何地方出现的 "keyword" (这个效率差点, 因为会尝试替换)
:%s/keyword/&/gn 统计任何地方出现的 "keyword" (这个常用)
查找功能,左杠命令:
/keyword 搜索关键词 n下一个
遍历文件夹统计语句:
for dir in `find /alidata1/trip/img/ -type d ` ;do echo -n "$dir " ;find $dir -name "*.jpg" -type f | wc -l ;echo "" ;done;
语句说明:
for dir in 循环处理 `find /opt -type d ` 查询出的文件夹列表,
do echo -n "$dir " 输出文件夹名
find $dir -name "*.jpg" -type f ...