15 lines
329 B
Bash
15 lines
329 B
Bash
#!/usr/bin/env bash
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Description:
|
|
# Print operating system information.
|
|
#
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
sw_vers
|
|
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
cat /etc/os-release
|
|
else
|
|
echo -e "${RED}Unknown OS: $OSTYPE${NC}"
|
|
fi
|