gpt4 book ai didi

chef-infra - vagrant up --no-color,它有什么作用?

转载 作者:行者123 更新时间:2023-12-02 07:01:39 26 4
gpt4 key购买 nike

我正在学习 chef,并从其中一个 chef 教程页面找到了这个命令。

https://learnchef.opscode.com/quickstart/converge/

我知道 vagrant up 是什么。但是 --no-color,我不确定这是干什么用的。我搜索了整个 vagrant 网站。还是找不到。

很好奇这是什么

最佳答案

--no-color 只是禁用彩色 Vagrant 输出。

目前似乎没有记录,但搜索 Vagrant Github repo显示如下:

bin/vagrant :

# Disable color in a few cases:
#
# * --no-color is anywhere in our arguments
# * STDOUT is not a TTY
# * The terminal doesn't support colors (Windows)
#
if ARGV.include?("--no-color")
# Delete the argument from the list so that it doesn't
# cause any invalid arguments down the road.
ARGV.delete("--no-color")

opts[:ui_class] = Vagrant::UI::Basic
elsif !Vagrant::Util::Platform.terminal_supports_colors?
opts[:ui_class] = Vagrant::UI::Basic
elsif !$stdout.tty? && !Vagrant::Util::Platform.cygwin?
# Cygwin always reports STDOUT is not a TTY, so we only disable
# colors if its not a TTY AND its not Cygwin.
opts[:ui_class] = Vagrant::UI::Basic
end

关于chef-infra - vagrant up --no-color,它有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19689666/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com