#!/bin/sh # # Author: Mitch Richling<http://www.mitchr.me/> # IP: Copyright 1998 by Mitch Richling. All rights reserved. # Key word: UNIX uname command # Notes: Example of how to use the /usr/bin/uname command. echo "sysname(-s): " `/usr/bin/uname -s` echo "nodename(-n): " `/usr/bin/uname -n` echo "release(-r): " `/usr/bin/uname -r` echo "version(-v): " `/usr/bin/uname -v` echo "machin(-m): " `/usr/bin/uname -m`