# Compile psolve.c and move the executable to ~/bin if it exists echo Compiling psolve... cc $* -O -Wall -o psolve psolve.c -lgsl -lgslcblas || exit if [ -d ~/bin ] ; then mv psolve ~/bin || exit fi echo Done.