1.統計本目錄下除`./apps/myapp/migrations`的所有py文件 2.單個文件行數 ...
1.統計本目錄下除`./apps/myapp/migrations`的所有py文件
wc -l `find -path . -o -name '*py' ! -path "./apps/myapp/migrations/*"
2.單個文件行數
wc -l testfile
grep -c "" testfile
sed -n '$=' testfile
awk 'END{print NR}'