Files
dotfiles/script/install.d/00-os_info.sh
2024-03-03 21:07:05 +00:00

15 lines
310 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# Print operating system information.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
sw_vers
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
lsb_release -a
else
echo "Unknown OS: $OSTYPE"
fi