mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
17 lines
214 B
Bash
17 lines
214 B
Bash
#!/usr/bin/env bash
|
|
|
|
is_linux() {
|
|
[[ $OSTYPE == linux* ]]
|
|
}
|
|
|
|
is_macos() {
|
|
[[ $OSTYPE == darwin* ]]
|
|
}
|
|
|
|
command_exists() {
|
|
command -v "$1" >/dev/null 2>&1
|
|
}
|
|
|
|
source_if_exists() {
|
|
[[ -f $1 ]] && source "$1"
|
|
}
|