More than 5 years have passed since last update.
#!/bin/sh
# to determine what version you use in Mac OS X
VER=`sw_vers -productVersion | awk -F. '{ print $1 "." $2 }'`
case $VER in
"10.8")
echo Mountain Lion
;;
"10.9")
echo Mavericks
;;
"10.10")
echo Yosemite
;;
esac
Why not register and get more from Qiita?
- We will deliver articles that match you
By following users and tags, you can catch up information on technical fields that you are interested in as a whole
- you can read useful information later efficiently
By "stocking" the articles you like, you can search right away
Sign upLogin