#! /bin/sh for file in `cat ~/work/cvs-cmucl-work/p86/FEATURES` ; do if [ $file != :long-float ] ; then echo '(pushnew '$file' *features*)' fi done for file in `cat ~/work/cvs-cmucl-work/p86/MISFEATURES` ; do echo '(setq *features* (remove '$file' *features*))' done