create_ofiles 150 B

12345678910111213
  1. list=
  2. for i in *.c
  3. do
  4. b=`basename $i .c`
  5. if test ! -f $b.o
  6. then
  7. >$b.o
  8. list="$list $i"
  9. fi
  10. done
  11. : my SUN is too fast ...
  12. sleep 2
  13. touch $list