当我开始时screen
,我会收到一条消息,提供版本、版权和错误报告电子邮件地址。我不想每次开始都看到这个screen
。搜索手册页似乎没有找到解决方案,我希望这里的专家知道绕过此信息页面的方法。
答案1
有一个设置:
# Don't display the copyright page
startup_message off # default: on
您可以在系统范围内进行设置(在 中/etc/screenrc
),也可以仅针对您的帐户进行设置(在 中~/.screenrc
)。快捷命令:
# Skipping the startup message for your account.
echo 'startup_message off' >> ~/.screenrc
# Skipping the startup message for all accounts.
sudo bash -c "echo 'startup_message off' >> /etc/screenrc"
答案2
screen -q
如果您不想触摸文件,也适用于我。