所以在一个全新的 arch linux 实例上,我希望能够tzdata
从一开始就安装。
要手动这样做,我这样做: -
[root@myarch ~]# pacman -S tzdata
:: The following packages should be upgraded first :
pacman
:: Do you want to cancel the current operation
:: and upgrade these packages now? [Y/n] n
resolving dependencies...
looking for inter-conflicts...
Targets (1): tzdata-2012c-1
Total Download Size: 0.13 MB
Total Installed Size: 5.41 MB
Proceed with installation? [Y/n] Y
可以看出,我必须先输入n
,然后输入Y
。
如何在一行 bash 中运行而不需要键入n
and Y
?
yes n | pacman -S tzdata
让我通过第一个提示。但我被困在第二个提示上(显然)。