15 lines
365 B
Bash
15 lines
365 B
Bash
#!/usr/bin/env bash
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Description:
|
|
# Install cmatrix.
|
|
#
|
|
|
|
if ! command -v "cmatrix" &>/dev/null; then
|
|
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
sudo apt-get install -qq cmatrix &>/dev/null
|
|
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
|
brew install cmatrix
|
|
fi
|
|
fi
|