By using -- in the shell alias, we can get flags to be included in ARGS
alias juliaclient='julia --startup-file=no -e "using DaemonMode; runargs()" --'
This way one could do juliaclient -e 'println("Hi")' etc.
I imagine DaemonMode's runargs() could be extended to recognise -e, -E, and --project perhaps?
By using
--in the shell alias, we can get flags to be included inARGSThis way one could do
juliaclient -e 'println("Hi")'etc.I imagine DaemonMode's
runargs()could be extended to recognise-e,-E, and--projectperhaps?