[ Previous | Next | Contents | Glossary | Home | Search ]
GL3.2 for AIX: Graphics Library (GL) Technical Reference

run_all Example C Language Program

set +x
typeset temp
for dude in *
do
   typeset temp2=${temp%.c*}
   echo "Executing: $temp2"
   $temp2
done

[ Previous | Next | Contents | Glossary | Home | Search ]