McxRisley wrote: » UPDATE: After doing some research I went home and entered '/bin/sh/' instead of '/bin/bash/' and it worked both ways. My next question is, is 'sh' the same as 'bash'? Also I am now having another issue with a bash script that runs a ping sweep on my local network. The script is: #!/bin/bash if [ "$1" == "" ] then echo "Usage: ./pingscript.sh [network]" echo "example: ./pingscript.sh 192.168.20"elsefor x in `seq 1 254`; doping -c 1 $1.$xdone fi The script returns: unknown host 192.168.0.seq I really appreciate the help guys. I am a newbie to Linux so sorry if these questions seem kinda dumb haha