[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] BASH shell scripting help needed
- Subject: [ale] BASH shell scripting help needed
- From: FishR at bellsouth.net (Ryan Fish)
- Date: Fri Mar 18 11:36:01 2005
- References: <017a01c52bd1$9411c940$6401a8c0@win2kpro1> <[email protected]>
Thank you.
I ended up doing something very similar to that which appears to have
worked.
-Ryan
----- Original Message -----
From: "James Baldwin" <jbaldwin at antinode.net>
To: "Ryan Fish" <FishR at bellsouth.net>; "Atlanta Linux Enthusiasts"
<ale at ale.org>
Sent: Friday, March 18, 2005 11:09 AM
Subject: Re: [ale] BASH shell scripting help needed
On 18 Mar 2005, at 10:45, Ryan Fish wrote:
> am in need of some help with writing a BASH shell script to do remove
> a particular set of directories within a directory. In hopes of not
> having to type out each one I would like to load the list of
> directories to remove from a text file. Unfortunately, my scripting
> skills are sub-par at best so I really don't even know where to start
> with this.
for in `cat directorlisting`; do rmdir $i; done