Hacker News new | ask | show | jobs
by cozzyd 3955 days ago
Yes but then they will execute at the same time instead of sequentially.
1 comments

How about:

    ./my_awesome_analysis /data/complicated_file_with_long_name.dat &
    # do some stuf
    wait
    ./my_awesome_analysis /data/even_more_complicated_path.dat
It's still not equivalent, and it's more cumbersome.