|
is it possible to have a perl script shut down the computer?
and if so, how do i make that happen?
|
|
|
#in terminal do:
man shutdown
#to see everything about how the terminal can shutdown the system.
#perlscripts can then do:
system(shutdown ....);
#to execute those commands.
|
|
|
that at least works in linux.
i dont know about mac or windows.
|
|
|
|
|
|
|
// |