$1表示第一个参数,$*表示用户输入的所有参数
hello1脚本如下,可以接受一个位置参数
#!/bin/bash
echo $1
运行脚本: ./hello1 "hello world" 屏幕上输出 hello world
hello2 脚本如下,循环读取用户的所有输入参数并在屏幕上显示
#!/bin/bash
for var in $* ; do
echo "your input is $var"
done
运行脚本: ./hello2 xiaojun yangna 屏幕输出:
your input is xiaojun
your input is yangna
$?表示上一个执行的脚本的返回值,成功返回0,不成功返回1~255之间的值