I use this
sleep 900; <command>
on my shell. Just wanted to know is there is some alternate/better way that you use?
|
I use this
on my shell. Just wanted to know is there is some alternate/better way that you use? |
|||
|
You are searching for
You can define multiple commands that should be executed in 15 min, seperate them with a return. |
||||
|
|
|
I use a short script I keep in my path, called after, containing
This way it's very easy to, for example, type:
then any commands and Ctrl-D, or
which does the same. |
|||||||||||||
|
sleep 15m && command, that way if you want to cancel it you canctrl-cit (your version would run the command if youctrl-cit). – OneOfOne Apr 25 '11 at 0:54