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 -->
#
2
(
permalink
)
04-12-2008
era
Herder of Useless Cats
Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,650
Code:
for d in dir/*/.; do rmdir "${d%/.}" done
This may require minor modifications. ${var%suf} means remove "suf" from the value of $var -- try it with
echo
instead of
rmdir
to see what it does, and whether it's suitable for you.
era
View Public Profile
Visit era's homepage!
Find all posts by era