请问linux命令上的选项和参数两者有啥区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问linux命令上的选项和参数两者有啥区别相关的知识,希望对你有一定的参考价值。
我个人理解,命令操作的对象叫参数,选项是对操作的过程做个修饰。就像我们说,杀鸡,杀是命令,鸡就是参数,而选项是个修饰,比如凶狠的杀,还是温柔的杀。比如删除文件 rm file,rm是命令,file是参数,我们没给选项,可以加个选项,执行rm -f file,这里-f就是选项,代表force,强制删除,就是修饰这个删除动作的过程的追问
谢谢
参考技术A 问题描述:在linux shell中如何处理tail -n 10 access.log这样的命令行选项?在bash中,可以用以下三种方式来处理命令行参数,每种方式都有自己的应用场景。
1,直接处理,依次对$1,$2,...,$n进行解析,分别手工处理;
2,getopts来处理,单个字符选项的情况(如:-n 10 -f file.txt等选项);
3,getopt,可以处理单个字符选项,也可以处理长选项long-option(如:--prefix=/home等)。
总结:小脚本手工处理即可,getopts能处理绝大多数的情况,getopt较复杂、功能也更强大。
1,直接手工处理位置参数
必须要要知道几个变量,
复制代码代码如下:
* $0 :即命令本身,相当于c/c++中的argv[0]
* $1 :第一个参数.
* $2, $3, $4 ... :第2、3、4个参数,依次类推。
* $# 参数的个数,不包括命令本身
* $@ :参数本身的列表,也不包括命令本身
* $* :和$@相同,但"$*" 和 "$@"(加引号)并不同,"$*"将所有的参数解释成一个字符串,而"$@"是一个参数数组。
手工处理方式能满足多数的简单需求,配合shift使用也能构造出强大的功能,但处理复杂选项时建议用下面的两种方法。
例子,(getargs.sh):
复制代码代码如下:
#!/bin/bash
if [ $# -lt 1 ]; then
echo "error.. need args"
exit 1
fi
echo "commond is $0"
echo "args are:"
for arg in "$@"
do
echo $arg
done
运行命令:
复制代码代码如下:
./getargs.sh 11 22 cc
commond is ./getargs.sh
args are:
11
22
cc
2,getopts (shell内置命令)
处理命令行参数是一个相似而又复杂的事情,为此,c提供了getopt/getopt_long等函数,c++的boost提供了options库,在shell中,处理此事的是getopts和getopt。
getopts/getopt的区别,getopt是个外部binary文件,而getopts是shell builtin。
参数和选项有啥区别?
【中文标题】参数和选项有啥区别?【英文标题】:What's the difference between Arguments and Options?参数和选项有什么区别? 【发布时间】:2013-07-24 03:03:05 【问题描述】:我不确定这个术语存在于哪个级别,但在 php-framework Laravel 中有一个名为 Artisan 的命令行工具,用于创建 cronjobs。 (又名命令)当您创建命令时。您可以像这样指定参数和选项:
/**
* Get the console command arguments.
*
* @return array
*/
protected function getArguments()
return array(
array('example', InputArgument::REQUIRED, 'An example argument.'),
);
/**
* Get the console command options.
*
* @return array
*/
protected function getOptions()
return array(
array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null),
);
两者有什么区别?
【问题讨论】:
大声笑我刚刚读了我自己的老问题,例如“论点和意见之间有什么区别”。确实很哲学。 【参考方案1】:看看artisan migrate:make
的帮助:
Usage:
migrate:make [--bench[="..."]] [--create] [--package[="..."]] [--path[="..."]] [--table[="..."]] name
Arguments:
name The name of the migration
Options:
--bench The workbench the migration belongs to.
--create The table needs to be created.
--package The package the migration belongs to.
--path Where to store the migration.
--table The table to migrate.
--help (-h) Display this help message.
--quiet (-q) Do not output any message.
--verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
--version (-V) Display this application version.
--ansi Force ANSI output.
--no-ansi Disable ANSI output.
--no-interaction (-n) Do not ask any interactive question.
--env The environment the command should run under.
参数是你通常需要提供至少一个,在这种情况下你需要提供迁移名称,否则命令会引发错误。
显然,Option 是可选的,用于修改命令行为。
【讨论】:
以上是关于请问linux命令上的选项和参数两者有啥区别的主要内容,如果未能解决你的问题,请参考以下文章