首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux下令收集2

2012-07-08 
linux命令收集2ls ${HUAWEI_ENTERPRISE_SERVER_ROOT}/lib/*.so | awk -F/ {print $NF}?统计grep后的行

linux命令收集2

ls ${HUAWEI_ENTERPRISE_SERVER_ROOT}/lib/*.so | awk -F'/' '{print $NF}'

?

统计grep后的行数:

grep -i 'error' *.log | wc -l

?

关于find: -exec: no terminating ";" or "+"的处理:

http://compgroups.net/comp.unix.shell/find-exec-no-terminating-or-+

网上的回答是:

As it says: add ';' or '+' at the end of the find command (you'll get?
slightly different outputs if you use one or the other). ";" is a special?
character to the shell, so you need to either escape it like \; or quote it?
like ';'?

?

find * | xargs grep email

会吧有email字段的文件名和所在行打印出来

?

语言设置:LC_ALL="zh_CN.GBK"

?

热点排行