find #리눅스 #리눅스명령어 #찾기1 find 명령어 파일이나 디렉토리를 찾을때 사용하는 명령어 [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는 문자열이 있는 행을 찾아 출력하는 명령어 입니다. 2021. 6. 29. 이전 1 다음