Forrest logo
back to context overview

while

List of commands for while:

  • while:ai:6222b can you write a script for watching ads automatically
    $ while true; do xdotool mousemove x y click 1; sleep 5; done
    try on your machine
    explain this command
  • while:tldr:c7dcb while: Execute a command forever once every second.
    $ while :; do ${command}; sleep 1; done
    try on your machine
    explain this command
back to context overview