find ./* -name '*' -type f |grep -v "/vendor"|grep -v "/log"|xargs cat | wc -l
统计当前目录下, 除了"/vendor"和'/log'之外所有普通文件(-type f ),的行数
find ./* -name '*' -type f |grep -v "/vendor"|grep -v "/log"|xargs cat | wc -l
统计当前目录下, 除了"/vendor"和'/log'之外所有普通文件(-type f ),的行数