計算當前目錄下(排除 ./.idea、./.git 目錄)java 文件的總行數(shù) find . ! -path './.idea*' ! -path './.git*' -name "*.java"|xargs cat|wc -l