Merge branch 'master' into rtoy-generate-command-line-texi-table
[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