Skip to content

Instantly share code, notes, and snippets.

@jiskanulo
Created November 6, 2012 07:36
Show Gist options
  • Save jiskanulo/4023269 to your computer and use it in GitHub Desktop.
Save jiskanulo/4023269 to your computer and use it in GitHub Desktop.
Mac OS Xか否か判別
#!/bin/bash
os_x=""
if [ -x `which sw_vers` ]; then
os_x="${sw_vers} | grep 'Mac OS X'"
fi
if [ -n "$os_x" ]; then
echo "Mac OS X"
else
echo "Other"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment