Development/Servers

Find, Grep 명령 예제

soomtong 2014. 3. 19. 10:43

대용량 파일 검색

find / -size +102400k -print|xargs ls -hl


문자열 찾기

grep -rni "text for search" ./dir


도스문자열 유닉스문자열로 변경

find ./ -type f -exec dos2unix {} \;

저작자표시 비영리 변경금지 (새창열림)