Jpp  debug
the software that should make you happy
JParser.csh
Go to the documentation of this file.
1 #!/bin/csh
2 #
3 # \author mdejong
4 #
5 setenv version 1.0
6 
7 # ------------------------------------------------------------------------------------------
8 #
9 # Example script for JParser
10 #
11 # ------------------------------------------------------------------------------------------
12 
13 source $JPP_DIR/setenv.csh $JPP_DIR > /dev/null
14 
15 cat>input_file<<EOF
16 1 1
17 2 2
18 3 3
19 4 4
20 EOF
21 
22 echo "input file"
23 cat input_file
24 
25 echo "JParser:"
26 $JPP_DIR/examples/Jeep/JParser -! "`cat input_file | tr '\n' '\r'`" -ab -T "hello world" --!
27 
28 rm -f input_file