美文网首页
Shell (六)

Shell (六)

作者: StarShift | 来源:发表于2016-11-23 00:04 被阅读19次

Shell 命令行参数

在脚本中通过 $1, $2, $3, 引用参数${10} 时,参数必须在大括号中。

#!/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\"."
# Adds ./ for current directory
echo "The name of this script is \"`basename $0`\"."
# Strips out path name info (see 'basename')

echo

if [ -n "$1" ]              # Tested variable is quoted.
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 "${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

exit 0

脚本的返回状态

shell 中使用exit命令来结束脚本,就像C程序一样,也会有一个返回值来给到父进程。

每个命令都会返回一个exit状态,如果命令执行成功,返回0。如果返回一个非零值,通常情况下都会认为是一个错误码。

当一个脚本不以exit退出时,就用最后一个命令的返回码来作为脚本的状态。

在shell中,使用$?来读取最后一个命令的退出码。

相关文章

  • shell(六)

    Shell 函数 linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。shell中函数的...

  • Shell (六)

    Shell 命令行参数 在脚本中通过 $1, $2, $3, 引用参数${10} 时,参数必须在大括号中。 脚本的...

  • 六、Shell 传递参数

    欢迎加入技术交流群群号: 552340860 我们可以在执行 Shell 脚本时,向脚本传递参数,脚本内获取参数...

  • shell技巧分享(六)

    这是一个系列文章,主要分享shell(部分功能仅适用于bash)的使用建议和技巧,每次分享3点,希望你能有所收获。...

  • 进程(六):子 Shell

    子 Shell 是由 Shell 或 Shell 脚本运行的子进程。当我们在 Shell 命令行提示符下,运行一个...

  • 六、Shell printf 命令

    上一章节我们学习了 Shell 的 echo 命令,本章节我们来学习 Shell 的另一个输出命令 printf。...

  • shell编程(六)数组

    shell数组的定义:一个变量可以存多个值。 一般数组 格式 数组名称=[值1,值2,值3]例如:arry=(1,...

  • shell命令整理(六)

    文件查找 grep: 文件内容过滤 查找命令 查询命令和配置文件的位置 一、find详解: 文件查找,针对文...

  • shell脚本从入门到精通

    一、Shell脚本编写格式 二、回收站 三、当前内存使用率 四、倒计时程序的编写 五、水果商店 六、Shell基本...

  • Shell 学习

    shell 变量 shell 参数传递 shell 数组 shell 运算符 shell echo 命令 prin...

网友评论

      本文标题:Shell (六)

      本文链接:https://www.haomeiwen.com/subject/pgvwuttx.html