ARGV

ARGV

常用释义

词性释义

ARGV
例句
  • 全部
This list is similar to the argv list used in common C programs and defines the application (first element of the array) and argument list.
该列表与普通C程序中的argv列表类似,定义了应用程序(数组第一个元素)和参数列表。
The outer foreach loop iterates over all of the command-line parameters in the @ARGV array looking for a trigger message.
外层foreach循环迭代@ARGV数组中的所有命令行参数,查找触发器消息。
该循环在数组ARGV上迭代,它是在命令行传递给脚本的余下的参数集合。
在我看来,最简单的解决方案是手工解析@ARGV,如下所示。
In particular, argv is an array of arguments to the program, the first argument being the program itself.
特别是,argv是程序的参数数组,第一个参数是程序本身。
在内部,Perl(类似于C)将参数传递给它用@ARGV数组解释的脚本。
The magic of the -i switch is that it replaces each file in @ARGV with the version produced by the script's output on that file.
i开关的神奇之处在于它对@ARGV中的每个文件都用该脚本对该文件输出所产生的文件版本进行替代。
当脚本运行在命令行方式时,argv变量传递给程序C语言样式的命令行参数。
The code in Listing 2 first looks for a parameter passed in the $argv array.
清单2中的代码首先在$argv数组中查找一个传递进来的参数。
为了简单起见,这个脚本只处理第一个额外参数argv[1]。
It simply emits the contents of the argv vector.
它只简单地打印argv向量的内容。
Next, define your argument list, called argv.
下一步,定义参数列表,使argv被调用。
For each file given on the command line (in @ARGV), I get the ID3 tag and create it if necessary.
对命令行(@ARGV中)上给出的每一个文件,我得到ID3标签,如果需要则创建它。
BusyBox then invokes the internal utility as defined by argv[0].
BusyBox然后可以通过argv[0]来调用内部工具。
In this case, you use a range to index the sys. argv list.
在这个示例中,使用range以索引sys.argv列表。
其他则是纯粹的风格惯例(args而非argv;i++而非++i)。
Index 0 of argv is the program name that was invoked from the command line.
argv的索引0是从命令行调用的程序名。
The variable CMD was set to "cat " +sys. argv[2].
变量CMD的值设置为“cat”+sys.argv[2]。
Script 6. pl recognizes UTF-8 data in @ARGV (6_out. txt shows a sample run of 6. pl).
脚本6.pl可以识别@ARGV中的UTF-8数据(6_out.txt显示了一个运行6.pl的样例输出)。
The first argv element (0) is the program name (that is, echo. py).
第一个argv元素(0)是程序名(即echo.py)。