8 lines
105 B
Julia
8 lines
105 B
Julia
julia> mycommand = `echo hello`
|
|
`echo hello`
|
|
|
|
julia> typeof(mycommand)
|
|
Cmd
|
|
|
|
julia> run(mycommand);
|
|
hello
|