The UNIX and Linux Forums
>
Top Forums
>
UNIX for Dummies Questions & Answers
Delete files with 0kb
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Rules & FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
Delete files with 0kb
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
10-23-2006
jim mcnamara
...@...
Join Date: Feb 2004
Location: NM
Posts: 3,491
Code:
find /path/to/logs -type f -size 0 -exec rm -f {} \;
jim mcnamara
View Public Profile
Find all posts by jim mcnamara