- To: david@xxxxxxxxxxxxx
- Subject: Re: [SLUG] spaces in filenames - bash scripting problem
- From: Howard Lowndes <lannet@xxxxxxxxxxxxx>
- Date: Sat, 20 May 2006 15:12:26 +1000
- Cc: slug@xxxxxxxxxxx
- Organization: LANNet Computing Associates
- User-agent: Thunderbird 1.5.0.2 (X11/20060501)
david wrote:
The scrip works as long as there are no blanks.... unfortunately there
are lots of blanks in both directories and filenames. Can anyone tell me
what i should be doing?
#!/bin/bash
# takes the first 3 chars of each directory and
# prepends it to the file names in that directory.
#cd /home/david/Desktop/musicbyalbum
cd /home/david/test
for x in $(ls)
do
I think this might work for you
y=$(echo "$x" | cut -c -3)
for z in $(ls "$x")
do
mv "$x"/"$z" "$x"/"$y""$z"
done
done
--
Howard.
LANNet Computing Associates - Your Linux people <http://lannetlinux.com>
When you want a computer system that works, just choose Linux;
When you want a computer system that works, just, choose Microsoft.
--
Flatter government, not fatter government; abolish the Australian states.