OS X 10.7.5'te aşağıdaki bash betiğini yarattım:
$ cd ~/Documents/github/scripts
$ vim hello_world.sh
#!/bin/bash
clear
echo "The script starts now."
echo "Hi, $USER!"
echo "I will now fetch you a list of connected users:"
echo
w
echo
echo "I'm setting two variables now."
COLOUR="black"
VALUE="9"
echo "This is a string: $COLOUR"
echo "AND this is a number: $VALUE"
echo
echo "I'm giving you back your prompt now."
echo
Sonra çalıştırılabilir olduğundan emin olun:
$ chmod ugo+rwx hello_world.sh
$ ls -l
-rwxrwxrwx 1 GuardDog_02 staff 325 Mar 13 18:51 hello_world.sh
Sonra dizini PATH değişkeninin içeriğine ekliyorum:
$ vim ~/.profile
export PATH=/Users/GuardDog_02/QtSDK/Desktop/Qt/474/gcc/bin/:/opt/local/bin:/opt/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin:/usr/X11/bin:/usr/local/mysql/bin
PATH=$PATH:/Users/GuardDog_02/Documents/github/scripts
export PATH
Daha sonra efekti uygulamak için aşağıdakileri çalıştırın:
$ . ~/.profile
Sonra yeni bir kontrol terminal penceresi açtım ve hello_world.sh komutunu çalıştırdım ancak komut bulunamadı:
$ hello_world.sh
-bash: hello_world.sh: command not found
Kabuk betiği neden kontrol terminalindeki etkileşimli bash kabuğundan tanınmıyor? Aynı şeyi Ubuntu'da da denedim ve gayet iyi çalıştı.