shell脚本中使用命令行参数的例子

发布时间:2020-10-06编辑:脚本学堂
本文介绍了在shell脚本中使用命令行参数的方法,一个小例子,大家做个参考。

有如下的shell/ target=_blank class=infotextkey>shell脚本代码:
parameter.sh
 

复制代码 代码示例:

#!/bin/bash
 
echo "show all the parameter    : "
 
echo "the scirpt name is        : $0"
echo "the first  parameter is   : $1"
echo "the second parameter is   : $2"
echo "the third  parameter is   : $3"
echo "the four   parameter is   : $4"
echo "the five   parameter is   : $5"

exit

运行该shell脚本,接收命令行参数,如下图:
shell命令行参数