CLI
Collections
- What is Source Command in Linux and How Does it Work?
- Command Line Interface Guidelines
- Setting PATH environment variable in OSX permanently
You have to add it to
/etc/paths. - https://stackoverflow.com/a/22465399/26960115
라인 수 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