| 123456789101112131415161718192021222324252627 | #!/bin/bashUSAGE=" $0 [OPTIONS]\n\nThe currently defined set of flags is:\n\n-o category\t fileout compiled classes in category\n-f file   \t filein file\n"FILE=''CATEGORY=''if [ $# == 0 ]; then        echo -e $USAGE        exit 1fiwhile getopts f:o:h odo        case "$o" in        f) 	  FILE="$OPTARG";;        o) 	  CATEGORY="$OPTARG";;        h)    echo -e "Usage:"              echo -e $USAGE                exit 1;;        esacdoned8 ./js/boot.js ./js/kernel.js ./js/parser.js ./js/compiler.js ./js/canvas.js ./js/init.js ./scripts/compile.js -- $FILE $CATEGORY
 |