我正在遵循twilio的CLI设置,当我到达本文档的自动完成部分(https://www.twilio.com/docs/twilio-cli/quickstart)时,会从我的Mac(mojave)命令行上获得以下指令。我不知道我要在这里做什么。对不起,天真。
1) Add the autocomplete env var to your bash profile and source it
$ printf "$(twilio autocomplete:script bash)" >> ~/.bashrc; source ~/.bashrc
NOTE: If your terminal starts as a login shell you may need to print the init script into ~/.bash_profile or ~/.profile.
2) Test it out, e.g.:
$ twilio <TAB><TAB> # Command completion
$ twilio command --<TAB><TAB> # Flag completion
Enjoy!
您可以运行命令:
printf "$(twilio autocomplete:script bash)" >> ~/.bashrc; source ~/.bashrc
在OS-X终端提示符下,它将把>>
该命令的输出附加到~/.bashrc
文件中。然后,它将获取该文件的内容以填充您的终端环境(在这种情况下,您不需要关闭终端并重新打开它)。
从那时起,当您启动一个新的Bash shell时,您会很方便(并且无需再次运行该命令)。