blob: 56278199be49b494017f9458d2a81cf7795738f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh
#
# reboot Execute the reboot command.
#
# Version: @(#)reboot 2.75 22-Jun-1998 miquels@cistron.nl
#
PATH=/sbin:/bin:/usr/sbin:/usr/bin
echo -n "Rebooting... "
reboot -d -f -i
|