updated on Wed Jan 11 00:07:16 UTC 2012
[aur-mirror.git] / jsoftware / jfe
blob2e0ab3548b53f03b2df7d2ca83f2e5c753d7eac8
1 #!/bin/bash
3 # front-end for jconsole and jwd (http://www.jsoftware.com)
4 # written for Arch Linux by Lorenzo Tomei
6 export JPATH=/usr/lib/j
7 case "$1" in
8 -c|--console)
9 shift
10 ${JPATH}/bin/jconsole "$@"
12 -w|--window)
13 shift
14 ${JPATH}/bin/jwd "$@"
16 -e|--external)
17 shift
18 ${JPATH}/bin/jee "${JPATH}/bin/jwd $@"
20 -b|--break)
21 ${JPATH}/bin/jbreak
24 echo "usage: $0 {-c|--console|-w|--window|-e|--external|-b|--break} [jargs]"
26 esac