We can use quotes to force something to be a single arg – such as paths containing spaces. But args that end with a backslash will make the trailing quote of the arg, part of the arg – and that arg will not be enclosed properly. Any following args will not get received correctly, or at all.
Tag Archives: args
Julia: pass args to a Julia script
From a terminal, CLI or backticked command in a Julia script, etc, we can…. julia path/to/script.jl arg1 “arg 2” …Then in the receiver script.jl… first_arg = ARGS[1] Base.ARGS captures all the args that are passed in from the command to start the script, as strings. No need to parse or such things. If we wantContinue reading “Julia: pass args to a Julia script”