Forrest logo
back to context overview

sleep

List of commands for sleep:

  • sleep:ai:d0bb2 Simulate pressing the n key after a 4 second delay
    $ sleep 4 && xdotool key n
    try on your machine
    explain this command
  • sleep:tldr:52ae9 sleep: Execute a specific command after 20 [m]inutes delay.
    $ sleep 20m && ${command}
    try on your machine
    explain this command
  • sleep:tldr:64030 sleep: Execute a specific command after 20 seconds delay.
    $ sleep 20 && ${command}
    try on your machine
    explain this command
  • sleep:tldr:be75f sleep: Delay in [m]inutes. (Other units [d]ay, [h]our, [s]econd, [inf]inity can also be used).
    $ sleep ${minutes}m
    try on your machine
    explain this command
  • sleep:tldr:f4199 sleep: Delay in seconds.
    $ sleep ${seconds}
    try on your machine
    explain this command
  • sleep:tldr:f9b02 sleep: Delay for 1 [d]ay 3 [h]ours.
    $ sleep 1d 3h
    try on your machine
    explain this command
back to context overview