[shell]简单的shell提示和参数脚本

Posted aaronGao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[shell]简单的shell提示和参数脚本相关的知识,希望对你有一定的参考价值。

 该shell脚本有如下点:

  • bash or dash
  • case语句的写法
  • 脚本help写法
  • 参数是否为空的写法
  • 参数
#! /bin/bash
case "$1" in
    -h|--help|?)
    echo "Usage: 1st arg:pin name, 2st arg:reset time"
    echo "1st arg pin name:lte-reset,zigbee-reset"
    echo "2st arg reset time in ms"
    exit 0 
;;
esac

if [ ! -n "$1" ]; then
    echo "pls input 1st arg"
    exit
fi


if [ ! -n "$2" ]; then
    echo "pls input 2st arg"
    exit
fi

echo "you will reset $1 with $2ms"
echo 0 > /home/gpio/$1
time=$[ $2 * 1000 ] 
echo $time > /home/gpio/$1

 

以上是关于[shell]简单的shell提示和参数脚本的主要内容,如果未能解决你的问题,请参考以下文章

往shell脚本中传入参数

linux中怎么编写shell脚本,首先判断参数个数,若无参数提示(please enter pa

编写一个shell脚本,可以输入2个参数,并将它们的乘积显示出来

linux arm 运行 shell .sh 脚本文件报错:/bin/bash^M: bad interpreter: No such file or directory(dos2unix )(代码片

用shell写一个猜价格脚本?

Shell 常见语法