home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume7
/
nsubj
/
subj.old
< prev
next >
Wrap
Text File
|
1989-06-03
|
318b
|
24 lines
#! /bin/sh
case $1 in
"") dir=.;;
*) dir=$1;;
esac
cd $dir
for i in `ls -t`;do
if [ -d $i ]
then
echo ${i}': ****directory****'
# cd $i;/bin/sh /usr/uncw/subj
# echo ${i}'******end******'
fi
if [ -f $i ]
then
echo -n "$i:";head $i|if fgrep ubject
then
:
else
echo
fi
fi
done