The UNIX and Linux Forums
>
OS Specific Forums
>
Linux
deleting only directory not files
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
deleting only directory not files
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
04-13-2008
rubin
Registered User
Join Date: Nov 2007
Posts: 170
One way of doing it:
Code:
ls -l | awk -F'[0-9][0-9]:[0-9][0-9]' '/^d/{print $NF}'| xargs -i rm -rf '{}' \;
rubin
View Public Profile
Find all posts by rubin