Visit my blog or connect with me on Twitter
git init
or
Visit my blog or connect with me on Twitter
git init
or
| #!/bin/bash | |
| file=$1 | |
| if [ ${file: -1} == "t" ]; then | |
| jjtree $file | |
| file=${file%t} | |
| fi | |
| javacc $file | |
| javac *.java | |
| name=${file%.*} | |
| echo "________________________________________________________________________________" |