quick linux shutdown from terminal - Linux Views : 317
Tagged in : Linux
0 0
Send mail
quick linux shutdown from terminal

Shutdown linux from the command terminal by adding this function to roots' .bashrc file:

quit ()
{
poweroff -d
}


Now all you have to do is, login as root, and type quit.

By Sanju, On - 2009-12-29



    Login to add Comments .