Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
adamkruszewski
on Sept 23, 2017
|
parent
|
context
|
favorite
| on:
Parallel processing with Unix tools
I think it does, try it as:
sleep 5 && (echo hello > test.txt)
and you'll see it creates the file only after sleep ends.
Consider applying for YC's Spring batch! Applications are open till Feb 11.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
sleep 5 && (echo hello > test.txt)
and you'll see it creates the file only after sleep ends.