cgnsupdate 230 B

1234567891011
  1. #!/bin/sh
  2. if [ $# -lt 1 ]; then
  3. echo "usage: cgnsupdate inputCGNSfile [outputCGNSfile]"
  4. exit 1
  5. fi
  6. dir=`dirname $0`
  7. if ! [ -x $dir/cgnscheck ]; then
  8. echo "cgnscheck does not exist in $dir"
  9. exit 1
  10. fi
  11. $dir/cgnscheck -U $1 $2