Is there a command to start a program after a delay?
Something like shutdown 0
for firefox
where firefox launch after a delay.
I was following this tutorial where it says adding sleep 150
adds a delay of 150 seconds before it starts the program. But it doesn't seem to be working. The program never launches on startup after I made this edit.
sleep 150; firefox
in a command line would do. – PerlDuck Mar 29 '18 at 13:25crontab
'@reboot'. – sudodus Mar 29 '18 at 13:37sleep 120; dropbox start -i
after reading the tutorial. But, Dropbox never launches on startup now. So what is the correct method of implementing this?Does
– Sandeep C Mar 30 '18 at 09:56bash -c "sleep 10m && dropbox start -i"
work?