From 742b56589eb0c53026e1432c75563c2d57c3b23f Mon Sep 17 00:00:00 2001 From: zerandomalt <33420785+zerandomalt@users.noreply.github.com> Date: Fri, 17 May 2019 07:03:13 +0100 Subject: [PATCH] Made the formatting more consistent (#30285) The formatting is now more consistent with the other files in the directory, also added a more information section with a link to the SS64 page. --- guide/english/bash/bash-shutdown/index.md | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/guide/english/bash/bash-shutdown/index.md b/guide/english/bash/bash-shutdown/index.md index e546ef6dc7..acc6f9a4b8 100644 --- a/guide/english/bash/bash-shutdown/index.md +++ b/guide/english/bash/bash-shutdown/index.md @@ -2,20 +2,25 @@ title: Bash shutdown --- -Bash Command: shutdown +## Bash Command: shutdown -`shutdown` - typing the shutdown command will schedule your system to be shutdown at a given point in time. +Typing the shutdown command will schedule your system to be shutdown at a given point in time. -Options: +### Usage -+m , will specify the minutes until shutdown. +```bash +shutdown [options] when [message] +``` --h , will specify the hours until shutdown. +Most used options: +* `+m`, will specify the minutes until shutdown. --r , will trigger a restart of the system after shutting it down. +* `-h`, will specify the hours until shutdown. -message , will display a message of your chosing prior to shutting it down. +* `-r`, will trigger a restart of the system after shutting it down. -Syntax: +Adding a message to the end of the command will display a message of your chosing prior to shutting it down. -shutdown -h +m message +#### More information: + +* SS64: https://ss64.com/bash/shutdown.html