블로그
- [노트 필기] 리눅스에 대해 알아보자. 8. Linux 기초 a. 명령 구문, chmod 명령어 옵션 인수 Commands typically have the syntax: command option(s) argument(s) 옵션 -ㅣ, -ltr 하이픈이나 대시가 들어가며 삭제여부를 묻지 않고 파일을 지운다. rm -r seinfeld // -r 디렉토리를 지울 때 사용된다. mkdir seinfeld ma.......
- 리눅스 find - 파일 검색 사용법 : find [검색대상위치] [옵션] [수행할작업] 용량이 0 인 비어있는 파일을 검색하는 것 Bashfind / -empty -exec ls -l {} \; 특정 소유자의 검색 Bashfind /home -name *.html -exec ls -l {} \; 검색된 파일을 바로 삭제 Bashfind ~nestgoer -name *.bak -exec rm