Skip to content
Snippets Groups Projects

Make view12/14/15 parallel (one slice per job)

Merged Wouter Deconinck requested to merge view14-parallel into master
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
@@ -23,7 +23,7 @@
function print_the_help {
echo "USAGE: $0 -i <PRIM_FILE> "
echo "USAGE: $0 -i <PRIM_FILE> <slices ...> "
echo " OPTIONS: "
echo " -t,--tag filename tag (default: view1)"
exit
@@ -53,12 +53,16 @@ do
shift # past argument
shift # past value
;;
*) # unknown option
-[a-zA-Z]*) # unknown option
#POSITIONAL+=("$1") # save it in an array for later
echo "unknown option $1"
print_the_help
shift # past argument
;;
*) # positional options
#POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
set -- "${POSITIONAL[@]}" # restore positional parameters
Loading