how to open Mozilla browser home page in 2 mins of current time using the at command on command line?
Asked
Active
Viewed 518 times
1 Answers
0
sleep 120; firefox; Is correct.
But to clarify:
sleep is counted in seconds so
sleep 120is what you need for it to wait 2 minutes.Then
firefoxis what you need to open a browser.
If you'd like it to open say Google, the command is
firefox https://google.com
sbarb
- 109