[求助]:shell入门问题!

受益非浅
多谢师兄~~~`..公社有没有这方面的教程可下载啊?
公社没有,我这里有呵呵
http://zhy2fly.lysafe.com/web/index/zhy2fly_docs_document01.htm
我的怎么不能执行啊?
我在/home目录下建立了文件test.sh,文件内容为:#!/bin/bash  echo "hello,world"
然后:[root@nierong527 home]# chmod +x test.sh ;[root@nierong527 home]# test.sh
可是:bash: test.sh: command not found
是哪里出了问题啊 ?
我真的是检查不出来啊!(我也检查了/bin,下面有bash)
请指点!!
#!/bin/bash echo "hello,world"

为什么不写成
#!/bin/bash
echo "hello,world"
[quote:a3399196d2="dragon527"]我的怎么不能执行啊?
我在/home目录下建立了文件test.sh,文件内容为:#!/bin/bash  echo "hello,world"
然后:[root@nierong527 home]# chmod +x test.sh ;[root@nierong527 home]# test.sh
可是:bash: test.sh: command not found
是哪里出了问题啊 ?
我真的是检查不出来啊!(我也检查了/bin,下面有bash)
请指点!![/quote]
[code:1]./test.sh
. ./test.sh
source ./test.sh[/code:1]
都可以