mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2025-02-09 17:37:16 -07:00
Former-commit-id: 09eacc3f3f761c2b3454d20356ba085d18bdb722 Former-commit-id: 89d8a1302bd2a72239fbe9ad9820be4ecda76cab
48 lines
695 B
Bash
48 lines
695 B
Bash
get_tmux_option() {
|
|
local option="$1"
|
|
local default_value="$2"
|
|
local option_value="$(tmux show-option -gqv "$option")"
|
|
if [ -z "$option_value" ]; then
|
|
echo "$default_value"
|
|
else
|
|
echo "$option_value"
|
|
fi
|
|
}
|
|
|
|
is_osx() {
|
|
[ $(uname) == "Darwin" ]
|
|
}
|
|
|
|
is_freebsd() {
|
|
[ $(uname) == "FreeBSD" ]
|
|
}
|
|
|
|
is_openbsd() {
|
|
[ $(uname) == "OpenBSD" ]
|
|
}
|
|
|
|
is_linux() {
|
|
[ $(uname) == "Linux" ]
|
|
}
|
|
|
|
is_cygwin() {
|
|
command -v WMIC &> /dev/null
|
|
}
|
|
|
|
is_linux_iostat() {
|
|
# Bug in early versions of linux iostat -V return error code
|
|
iostat -c &> /dev/null
|
|
}
|
|
|
|
cpus_number() {
|
|
if is_linux; then
|
|
nproc
|
|
else
|
|
sysctl -n hw.ncpu
|
|
fi
|
|
}
|
|
|
|
command_exists() {
|
|
local command="$1"
|
|
command -v "$command" &> /dev/null
|
|
}
|