1.切换到.sh脚本所在的目录,执行.sh脚本:
[root@nhost21 mnt]# ls
111.py                                      daytime.csv  hdfs_python.py                        Rplots.pdf  test.py
aa.sh                                       getdata.py   pathup.py                             teaa.sh
[root@nhost21 mnt]#  ./teaa.sh
2.用完整路径执行脚本
[root@nhost21 mnt]# /mnt/teaa.sh
pwd
[1] NA
[1] NA
[1] NA
[1] NA
[1] "Parameter1 information show NA"
[1] "PArameter2 information show NA"
3.直接使用bash 或sh 来执行bash shell脚本

(1)bash命令

[root@nhost21 mnt]#bash teaa.sh 

(2)sh命令

[root@nhost21 mnt]#sh teaa.sh
4.在当前的shell环境中执行bash shell脚本

(1).执行

[root@nhost21 mnt]#. teaa.sh 

(2)source执行

[root@nhost21 mnt]#source teaa.sh