Show pullchanges.sh syntax highlighted
#! /bin/sh
for DIR in ls *; do
if [ -d $DIR ]; then
if [ -d $DIR/_darcs ]; then
echo
echo $DIR
echo "------------------------------------------"
cd $DIR
darcs pull
cd ..
echo "------------------------------------------"
fi
fi
done
See more files for this project here