본문 바로가기
운영체제/리눅스(CentOS)

find 명령어

by 마루의 일상 2021. 6. 29.
728x90
반응형

파일이나 디렉토리를 찾을때 사용하는 명령어

[root@localhost test]# find / -name "testfile2"
/data/test/testfile2
[root@localhost test]

제가 실무에서 자주 쓰는 명령어 인데요.

xargs, grep 하고 같이 사용하면 편리합니다.

[root@localhost test]# find ./ -name "*" | xargs grep -n --color=auto "반갑습니다" 2>/dev/null
./testfile2:1:반갑습니다.
[root@localhost test]# 

xargs는 앞 명령어의 결과를 다음 명령어의 입력으로 사용할때 적용하는 명령어 입니다.

grep는 문자열이 있는 행을 찾아 출력하는 명령어 입니다.

 

 

728x90
반응형

'운영체제 > 리눅스(CentOS)' 카테고리의 다른 글

whatis 명령어  (0) 2021.08.26
help 명령어  (0) 2021.08.05
cp 명령어  (0) 2021.06.24
mkdir 명령어  (0) 2021.06.23
mv 명령어  (0) 2021.06.22