|
|
|
|
|
by sheeeep86
2367 days ago
|
|
It's not fully automate, but I frequently find myself having to do a lot of one off shell tasks, which are not quite worth the effort of writing a bash script. While some command is running I would like to start enqueing the next command. Technically I could write one command like this and go get a coffee: cd dir1 && task1 && cd ../dir2 && task2 some arg && etc But then the task would only start executing when I'm done typing all commands... I want it to start task1 right away and then tkae my time to enter the rest... |
|