How to make a shell script double-clickable
Any thoughts?
TIA,
Mark
MacBook Pro, Mac OS X (10.6.4)
You can make a difference in the Apple Support Community!
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
When you sign up with your Apple Account, you can provide valuable feedback to other community members by upvoting helpful replies and User Tips.
MacBook Pro, Mac OS X (10.6.4)
chmod 777 file
$ chmod ugo+x file
#!/bin/bash
cd "`dirname $0`"/bin && bash datamodeler.sh $*
#!/bin/bash
cd "$(dirname "$0")/bin" && bash datamodeler.sh "$@"
How to make a shell script double-clickable