Jpp 19.3.0-rc.3
the software that should make you happy
Loading...
Searching...
No Matches
JShellParser.csh
Go to the documentation of this file.
1#!/bin/csh
2
3#
4# \author mdejong
5#
6# ------------------------------------------------------------------------------------------
7#
8# Example script for JShellParser
9#
10# ------------------------------------------------------------------------------------------
11
12source $JPP_DIR/setenv.csh $JPP_DIR >& /dev/null
13
14eval `JShellParser \
15 -o "-a A = 1, 2, 3, 4" \
16 -o "-b B" \
17 -b "-c C" \
18 -o "-d D = ''" \
19 -- $*`
20
21echo "A = <$A>"
22echo "B = <$B>"
23echo "C = <$C>"
24echo "D = <$D>"