Odi's astoundingly incomplete notes
New entries | CodeChange java process name
at least under Linux you can do that painlessly from bash:
And if you don't want to replace the current shell, execute it in a subshell by using parantheses:
exec -a myapp java com.example.MyApp
And if you don't want to replace the current shell, execute it in a subshell by using parantheses:
(exec -a myapp java com.example.MyApp)
Add comment