15 lines
310 B
Bash
Executable File
15 lines
310 B
Bash
Executable File
#!/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
|