Adding interfaces/emacs/imaxima/texinfo.tex to gitignore (created by automake)
[maxima.git] / archive / bin / if-not-exists
blob71bb06fcf6ff12af8b7670c76f593b8d9ff2cf92
1 #!/bin/sh
3 if [ ! -f $1 ] ; then
4 $2
5 $3
6 $4
7 fi
9 exit 0