This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function cleanup { | |
# Remove JNLP file and SSH process | |
rm -f $HOST.jviewer.jnlp | |
kill $! | |
} | |
USAGE="Usage: $0 -p <SSH proxy host> <hostname> <username>" |