Forrest logo
back to the shutdown tool

shutdown:tldr:31e08

shutdown: Sleep immediately.
$ shutdown -s now
try on your machine

The command "shutdown -s now" is used to initiate an immediate shutdown of a computer.

Here's a breakdown of what each part of the command means:

  • "shutdown" is the name of the command used to manage the system shutdown process.
  • "-s" is an option flag that specifies to shutdown the computer.
  • "now" is a parameter that tells the command to initiate the shutdown immediately.

So, when this command is executed, it will immediately shut down the computer without any prior warning or delay. It is important to note that this command usually requires administrative privileges or root access to execute.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the shutdown tool