본문 바로가기

CentOS

0 byte file 찾기 및 삭제

# 0 byte 파일 찾기

 

  $ find . -size 0

 

# 0 byte 파일 찾아서 삭제하기

 

  $ find . -size 0 -exec rm {};

'CentOS' 카테고리의 다른 글

리눅스(CentOS) 텔넷접속 느릴때  (0) 2015.12.07
yum repository  (0) 2015.12.07
Existing lock /var/run/yum.pid: another copy is running as pid  (0) 2015.12.07
Openssl 인증서 정보 확인  (0) 2015.11.30
yum command  (0) 2015.10.11