bugtype.github.io
find . -type f -exec grep -l 'hello' {} +hello가 들어간 파일들을 찾는다. -exec 옵션 : find 명령어로 찾은 결과 대상에 대하여 원하는 명령어를 적용 시킬 수 있게 해줍니다. {} - find로 찾은파일들grep -l 패턴이 포함된 파일이름을 출력 1. type이 file인 파일을 찾는다2. find에서 찾은 파일은 {}를 통해서 들어오게 되는데 해당 파일에서 hello가 있는지 확인한다.3. 출력.
기초, 기본, 알고리즘, 문법 https://dodo4513.github.io/2017/07/02/python_algorithm/
https://github.com/qkraudghgh/clean-code-javascript-ko/blob/master/README.md