Bash Commands - Create a script with multi-parameter

#!/bin/bash

# Call this script with at least 10 parameters, for example
# ./scriptname 1 2 3 4 5 6 7 8 9 10

MINPARAMS=10

echo

echo "The name of this script is \"$0\"."
echo "The name of this script is \"'basename $0'\"."

echo

if [ -n "$1" ]                     
# -n Test string be quoted is not null.
then
 echo "Parameter #1 is $1"          # Need quotes to escape #
fi

if [ -n "$2" ]
then
 echo "Parameter #2 is $2"
fi

if [ -n "$3" ]
then
 echo "Parameter #3 is $3"
fi

if [ -n "$4" ]
then
 echo "Parameter #4 is $4"
fi

if [ -n "$5" ]
then
 echo "Parameter #5 is $5"
fi

if [ -n "$6" ]
then
 echo "Parameter #6 is $6"
fi

if [ -n "$7" ]
then
 echo "Parameter #7 is $7"
fi

if [ -n "$8" ]
then
 echo "Parameter #8 is $8"
fi

if [ -n "$9" ]
then
 echo "Parameter #9 is $9"
fi

if [ -n "${10}" ]  
                        # Parameters > $9 must be enclosed in {brackets} .
then
 echo "Parameter #10 is ${10}"
fi

echo "-------------------------"
echo "All the command-line parameters are: "$*""

if [ $# -lt "$MINPARAMS" ]
then
  echo
  echo "This script needs at least $MINPARAMS command-line arguments!"
fi

echo


args=$#                       # Number of args passed.
lastarg=${!args}

echo "lastarg = $lastarg"
echo "lastarg = ${!#}"                   


exit 0

Note that $# : number of command-line arguments;  $*:All of the positional parameters and must be quoted with " " .
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值