向脚本传递参数[阮胜昌]

#!/bin/bash
echo "$# parameters";
echo "$@";


[root@node203 bash]# ./1.sh a b c d
4 parameters
a b c d
$#:代表参数的个数 
$@:代表参数值

#!/bin/bash
ps -elf | grep $1  //访问命令行的第一个参数
[root@node203 bash]# ./2.sh firefox
0 S root      5103  4970  0  77   0 -  1119 wait   14:44 pts/0    00:00:00 /bin/bash ./2.sh firefox

 

 

你可能感兴趣的:(胜)