리눅스 파일 찾기 명령어(find 명령어)
페이지 정보
본문
파일내 문자 찾기
find . -type f -print | xargs fgrep -| '[찾을단어]';
find . -type f -print | xargs fgrep -| 'join_result_mailform.html';
find [path] -name [파일명] | xargs grep [text]
$ find . -name *.* | xargs grep sample-1text
grep -rn \"include\" ./payment
파일만 찾기
find /home/paran -type f -name 'okj*'
find . -type f -print | xargs fgrep -| '[찾을단어]';
find . -type f -print | xargs fgrep -| 'join_result_mailform.html';
find [path] -name [파일명] | xargs grep [text]
$ find . -name *.* | xargs grep sample-1text
grep -rn \"include\" ./payment
파일만 찾기
find /home/paran -type f -name 'okj*'
- 이전글CentOS 에서 DB접속 안될때 20.02.21
- 다음글Html5 기본 코드(여기에다가 추가해라) 20.02.21
댓글목록
등록된 댓글이 없습니다.