johnnychen94 / Workflows.jl

MIT License
10 stars 1 forks source link

shell driver: support pipes #7

Open johnnychen94 opened 2 years ago

johnnychen94 commented 2 years ago
driver = "shell"
command = "ls -l | wc -l"

should be transcripted to the pipeline version

run(pipeline(pipeline(`ls -l`), `wc -l`))