2007. 11. 3. 21:26 Unix
파일 찾을 때 du 사용하기
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2380 - July 8, 2006
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
파일 찾을 때 du 사용하기
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2380 - July 8, 2006
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
파일 찾을 때 du 사용하기
일반적으로:
find . -name *.txt -print
는 파일을 찾기 위한 명령어이다.
하지만 du와 grep을 이용하여 find를 보다 효율적으로 대체할 수 있다.
다음을 사용하라:
du -a |grep *.txt
이 명령어는 현재 디렉토리에서 .txt 확장자를 갖는 모든 파일을 나타낼 것이다.
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
USE DU TO FIND FILES
Normally:
find . -name *.txt -print
is the command to find a file.
But you can locate find more
efficiently using du and grep
Use:
du -a |grep *.txt
This will locate all the files
with the extension .txt in the
current directory.
Normally:
find . -name *.txt -print
is the command to find a file.
But you can locate find more
efficiently using du and grep
Use:
du -a |grep *.txt
This will locate all the files
with the extension .txt in the
current directory.
반응형