home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Amiga 14
/
MA_Cover_14.iso
/
source
/
c
/
q1source_amy
/
qw
/
fixskins.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1998-08-26
|
104 b
|
9 lines
#!/bin/sh
for x in *; do
y=`echo $x | tr '[A-Z]' '[a-z]'`
if [ $x != $y ]; then
mv $x $y
fi
done