home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Big Green CD 8
/
BGCD_8_Dev.iso
/
NEXTSTEP
/
UNIX
/
Web
/
Utilities
/
counter_digits
/
mode.sh
< prev
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
|
1996-05-03
|
269 b
|
19 lines
#! /bin/sh
IMGDIR=images
CURRDIR=`pwd`
if test ! -d ${CURRDIR}/${IMGDIR}
then
echo I did not find the directory \"${IMGDIR}\" in the current directory. Exiting ...
exit 1
fi
for i in ${CURRDIR}/${IMGDIR}/*
do
chmod go-w $i/*.gif
echo Done in : $i
done
exit