728x90

find 이후 옵션으로 명령어를 실행하기

 

# find /work/dir -name "*.tmp" -exec rm -rf {} \;

 

같은 원리로 복사나 이동이 가능

 

# find /work/dir -name "*.tmp" -exec cp {} /des/dir \;

 

# find /work/dir -name "*.tmp" -exec mv {} /des/dir \;

 

 

 

728x90

+ Recent posts