CLI

Collections

라인 수 200 넘는 js, ts 파일 리스트 출력

wc -l $(find . -type f \( -name "*.ts" -o -name "*.js" \) ! -path "./node_modules/*" ! -path "./dist/*") 2>/dev/null | awk '$1 > 200 && !/total$/ {print}' | sort -rn

Children
  1. How to Search Files Effectively in the Linux Terminal
  2. My favorite tricks for navigating the Linux terminal faster