[Techtalk] real life kewl text-processing
Conor Daly
conor.daly at oceanfree.net
Sun Jan 25 20:20:14 EST 2004
On Sat, Jan 10, 2004 at 03:16:19PM -0600 or so it is rumoured hereabouts,
Kathryn Hogg thought:
>
> A simple enhancement which I use in a similar script is to allow the
> filenames to have path components. In this case, you want to leave the
> patch components alone and only lowerize the filename component:
>
> #!/bin/bash
> for file in $*
> do
> pathname=$(dirname $file)
> filename=$(basename $file)
> newfile=$(echo $file | tr '[:upper:]' '[:lower:]')
^^^^^
Shouldn't that be $filename? Otherwise you end up lowercasing the path
also...
> if [ $filename != $newfile ]
> then
> mv $file $pathname/$newfile
> fi
> done
Conor
--
Conor Daly <conor.daly at oceanfree.net>
Domestic Sysadmin :-)
---------------------
Faenor.cod.ie
7:24pm up 94 days, 12:32, 0 users, load average: 0.00, 0.00, 0.00
Hobbiton.cod.ie
7:18pm up 94 days, 12:22, 1 user, load average: 0.00, 0.00, 0.00
More information about the Techtalk
mailing list