We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-e
-E
By using -- in the shell alias, we can get flags to be included in ARGS
--
ARGS
alias juliaclient='julia --startup-file=no -e "using DaemonMode; runargs()" --'
This way one could do juliaclient -e 'println("Hi")' etc.
juliaclient -e 'println("Hi")'
I imagine DaemonMode's runargs() could be extended to recognise -e, -E, and --project perhaps?
runargs()
--project
The text was updated successfully, but these errors were encountered:
This is great idea, I hope to implement in the following days, it is not a difficult one. Thank you for the suggestion.
Sorry, something went wrong.
No branches or pull requests
By using
--
in the shell alias, we can get flags to be included inARGS
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?The text was updated successfully, but these errors were encountered: