Shutdown system using Kill command

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kinzy
    New Member
    • Apr 2009
    • 23

    Shutdown system using Kill command

    I want to know how can i shutdown the system using Kill command
  • Luuk
    Recognized Expert Top Contributor
    • Mar 2012
    • 1043

    #2
    You can try with the following line:
    Code:
    shutdown `kill`

    Comment

    • Nepomuk
      Recognized Expert Specialist
      • Aug 2007
      • 3111

      #3
      Normally you wouldn't use kill for this task; the normal way to shut down the system via command line would be
      Code:
      shutdown -h now

      Comment

      Working...