8

我正在使用 yargs 获取 CLI 参数。我想知道命令和选项之间的区别。

const argv = yargs
.command(
  'add',
  'Add a new note',
  {
    title: titleOptions,
    body: bodyOptions
  })
.argv;

const argv = yargs
.option('address', {
  alias: 'a',
  demand: true,
  describe: 'Address for fetching weather'
})
.help()
.alias('help', 'h')
.argv
4

1 回答 1

12

一个区别是语义:命令执行动作,选项改变执行动作的方式。另一个重要的区别是可以为选项分配值。例如:

git commit --message "Initial commit"

在上面的例子中,commit是命令,message是选项。该message选项的值为“初始提交”。您还可以使用没有值的选项,这些选项称为“标志”。

git fetch --no-tags

在这里,我们使用no-tags标志告诉 Git 从上游分支获取所有内容,但排除标签。

于 2018-02-03T17:13:55.307 回答