mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-05 23:29:27 +01:00
17 lines
245 B
Bash
Executable file
17 lines
245 B
Bash
Executable file
#!/bin/sh
|
|
__usage="
|
|
USAGE:
|
|
$0 <java-name> <command...>
|
|
|
|
ARGS:
|
|
<java-name> the jvm to use
|
|
<command...> the command to run
|
|
"
|
|
|
|
if [ 3 -gt $# ]; then
|
|
echo -e "$__usage"
|
|
else
|
|
export PATH="/usr/lib/jvm/$1/bin:$PATH"
|
|
${@:2}
|
|
fi
|
|
|