Skip to content

Instantly share code, notes, and snippets.

@NapoleonWils0n
Created November 11, 2012 01:07
Show Gist options
  • Save NapoleonWils0n/4053236 to your computer and use it in GitHub Desktop.
Save NapoleonWils0n/4053236 to your computer and use it in GitHub Desktop.
macosx: shutdown mac from the command line
#!/bin/sh
#-----------------------------------------------#
# shutdown mac
#-----------------------------------------------#
# Shutdown immediately
sudo shutdown -h now
# Restart immediately
sudo shutdown -r now
# Shutdown at 9 pm
sudo shutdown -h 21:00
# shutdown in 5 mins
sudo shutdown -h +5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment