NAME
Dev::Util::OS - OS discovery and functions
VERSION
Version v2.19.6
SYNOPSIS
OS discovery and functions
use Disk::SmartTools::OS;
my $OS = get_os();
my $hostname = get_hostname();
my $system_is_linux = is_linux();
...
my $status = ipc_run_e( { cmd => 'echo hello world', buf => \$buf } );
my @seq = ipc_run_c( { cmd => 'seq 1 10', } );
EXPORT
get_os
get_hostname
is_linux
is_mac
is_freebsd
is_openbsd
is_sunos
ipc_run_e
ipc_run_c
SUBROUTINES
get_os
Return the OS of the current system.
my $OS = get_os();
get_hostname
Return the hostname of the current system.
my $hostname = get_hostname();
is_linux
Return true if the current system is Linux.
my $system_is_linux = is_linux();
is_mac
Return true if the current system is MacOS (Darwin).
my $system_is_macOS = is_mac();
is_freebsd
Return true if the current system is FreeBSD.
my $system_is_FreeBSD = is_freebsd();
is_openbsd
Return true if the current system is OpenBSD.
my $system_is_OpenBSD = is_openbsd();
is_sunos
Return true if the current system is SunOS.
my $system_is_sunOS = is_sunos();
ipc_run_e(ARGS_HASH)
Execute an external program and return the status of it's execution.
ARGS_HASH: { cmd => CMD, buf => BUFFER_REF, verbose => VERBOSE_BOOL, timeout => SECONDS, debug => DEBUG_BOOL }
CMD The external command to execute
BUFFER_REF A reference to a buffer
VERBOSE_BOOL:optional 1 (default) for verbose output, 0 not so much
SECONDS:optional number of seconds to wait for CMD to execute, default: 10 sec
DEBUG_BOOL: optional Debug flag, default: 0
my $status = ipc_run_e( { cmd => 'echo hello world', verbose => 1, timeout => 8 } );
ipc_run_c(ARGS_HASH)
Capture the output of an external program. Return the output or return undef on failure.
ARGS_HASH: { cmd => CMD, buf => BUFFER_REF, verbose => VERBOSE_BOOL, timeout => SECONDS, debug => DEBUG_BOOL }
my @seq = ipc_run_c( { cmd => 'seq 1 10', } );
AUTHOR
Matt Martini, <matt at imaginarywave.com>
BUGS
Please report any bugs or feature requests to bug-dev-util at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dev-Util. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Dev::Util::OS
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
Search CPAN
ACKNOWLEDGMENTS
LICENSE AND COPYRIGHT
This software is Copyright © 2019-2025 by Matt Martini.
This is free software, licensed under:
The GNU General Public License, Version 3, June 2007