You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/mpeglib_artsplug/doemacs

30 lines
491 B

A=`find . | grep -v moc > flist.txt`
A=`grep "\.cpp$" flist.txt >cpp.txt`
A=`grep "\.h$" flist.txt >h.txt`
A=`grep "\.c$" flist.txt >c.txt`
A=`grep "\.cpp$" flist.txt >cc.txt`
A=`grep "\.idl$" flist.txt >idl.txt`
A=`grep "\.defs$" flist.txt >defs.txt`
C=`cat c.txt`
CP=`cat cpp.txt`
H=`cat h.txt`
CC=`cat cc.txt`
IDL=`cat idl.txt`
DEFS=`cat defs.txt`
B="${CP} ${H} ${C} ${CC} ${DEFS} ${IDL}"
emacs $B &
rm -f cpp.txt
rm -f h.txt
rm c.txt
rm cc.txt
rm flist.txt
rm defs.txt
rm idl.txt