Linux——比较实用的shell命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux——比较实用的shell命令相关的知识,希望对你有一定的参考价值。

1)统计当前目录下的index.php文件的行数

[[email protected]_web1 ~]# cat index.php |wc -l
17

2)统计web目录下,js文件数量:


[[email protected]_web1 ~]# find web/ -name "*.js" |wc -l

3)统计web目录下所有js文件代码行数:

[[email protected]_web1 ~]# find web/ -name "*.js" |xargs cat|wc -l 或 wc -l `find web/ -name "*.js"`|tail -n1

4)统计web目录下所有js文件代码行数,过滤了空行:
`[[email protected]_web1 ~]# find web/ -name "*.js" |xargs cat|grep -v ^$|wc -l``

5)统计web目录下所有js文件代码行数。过滤注释行
[[email protected]_web1 ~]# find web/ -name "*.js" |xargs cat|grep -v -e ^$ -e ^s*//.*$|wc -l

以上是关于Linux——比较实用的shell命令的主要内容,如果未能解决你的问题,请参考以下文章

Linux - Shell - diff

Linux中11个比较实用的命令行

超实用 Linux 常用命令

超实用 Linux 常用命令

5个实用的shell脚本面试题和答案

用shell命令取得文件生成时间