如何传递和解析Linux Bash脚本参数和参数

Bash is a powerful scripting language provides by various Linux distributions, Unix and BSD. If we need to make our script dynamic we generally use arguments. Arguments are provided to the script through the command line. In this tutorial, we will examine different use cases of argument passing and examples.

Bash是由各种Linux发行版,Unix和BSD提供的功能强大的脚本语言。 如果我们需要使脚本动态化,则通常使用参数。 通过命令行将参数提供给脚本。 在本教程中,我们将研究参数传递和示例的不同用例。

句法 (Syntax)

In order to use externally provided values inside the bash script, we should provide them after the script name. Following syntax assumes the script is executable.

为了在bash脚本中使用外部提供的值,我们应该在脚本名称之后提供它们。 以下语法假定脚本是可执行的。

myscript.sh PARAM1 PARAM2 ...

Or we can use bash in order to interpret our script like below and provide parameters.<

你可能感兴趣的:(python,linux,java,shell,bash)