-
Linux/Mac Terminal Commmands] ❤️>_ find❤️-Corey Schafer★Linux★리눅스★/Linux★명령어★Ubuntu★command 2022. 3. 17. 23:48728x90
https://www.youtube.com/watch?v=KCVaNb_zOuw
find . 현재 폴더 다 나옴. tree같은 느낌 find Website_Demo 폴더와 파일 다 나옴. find . -type d 디렉토리만 검색됨 find . -type f 파일만 다 나옴. find . -type f -name "test_1.txt" text_1.txt 파일 찾음 find . -type f -name "test*" text뒤에 비슷한거 다 찾아줌 find . -type f -iname "test*" text뒤에 비슷한거 다 찾아줌 대소문자 구분 없이 전부 다 . find . -type f -name "*.py" 파이썬 파일 다 찾아줌. find . -type f -mmin -10 10분 전 수정된 파일 찾아줌 개꿀!! (방금전 수정??) 영어라 == 뭔말인지 해보자!! find . -type f -mmin +10 10분 전 수정된 파일 찾아줌 개꿀!! (전부 다 찾으라는 거 영어라 == 뭔말인지 해보자!! find . type f -mmin +1 -mmin -5 앞에는 more than 1 min ago 뒤에는 less than 뜻 5 min ago 1분 ~ 5분 영어라 == 뭔말인지 해보자!! find . type f -mtime -20 20일전 수정된거 찾아줌 time은 일자별 말하는 듯 find . type f -mtime +20 뒤에는 less than 뜻 20일 less than 무슨 뜻이지???? 20일 후?? 수정된거 찾아줌 time은 일자별 말하는 듯 mmin 분 단위 mtime 일 단위 amin atime 엑세스 시간으로 검색 가능함 cmin ctime 수정된 시간으로 검색 find . -size +5M 5메가 넘는 파일 검색 k 킬로 바이트 G 기가 바이트 ls -lah ./Website_Demo/public/images/ 용량까지 다 나옴. 상세 검색 find . -empty 뭐지?? find . -perm 777 웹사이트 파일?? 만 검색됨. 신기!!(htm, js, css, jpg 같은 파일들) 775 구글로 알아보자 find Website_Demo -exec chown coreyschafer::www-data {} + exec엑스큐트 ls - ls Website_Demo/ 자세히 보면 2번째 파일 만든 사람이 coreychafer 인걸 알수 있음. ㅎㅎ 뭔지 모르겠지만 옆에 www-data로 바뀐다. 원래 staff로 되었 있었음. 신기!! 근데 뭔지. 모르겠다. ㅋ 부모 폴더 나오는거 보니 자식의 뭔 이름을 바꾼듯 find Website_Demo -type d -exec chmod 775 {} + d는 디렉토리란 뜻 find Website_Demo -perm 775 775로 바뀐다 . 775가 뭔지 == find Website_Demo -type f -exec chmod 664 {} + f는 파일인듯 find Website_Demo -perm 664
한국 사람의 글
[Linux] 리눅스 find 명령어 사용법 (파일 찾기, 검색) - https://coding-factory.tistory.com/m/804
find & grep은 필수 !❤️
다른 글 보기
grep
Linux/Mac Terminal Tutorial:
The ❤️Grep❤️Command
- search Files and Directories for -
https://economiceco.tistory.com/m/12993반응형'★Linux★리눅스★ > Linux★명령어★Ubuntu★command' 카테고리의 다른 글
Linux] nohup 세션이 끊겨도 계속 실행되도록 해보자 (0) 2022.04.30 Windows vs MacOS vs Linux – Operating System Handbook (0) 2022.04.13 Linux/Mac Terminal Tutorial: The Grep❤️Command - search Files and Directories for (0) 2022.03.28 Move files to directory based on extension (zsh, macOS) (0) 2022.03.23 [리눅스명령어ls]ls -la 해서 파일 자세히 의미list file and directory names and attributes (0) 2022.03.17 sudo shutdown -h now 맥os터미널 창에서 컴퓨터 종료 시키기 (0) 2022.03.16 Linus Torvalds ponders limits of automation as kernel release delayed (0) 2022.03.14 Bash 쉘 프로그래밍 - 6. 특수 기호 및 인용부호 (0) 2022.03.14