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