gpt4 book ai didi

macos - Mac终端:尝试添加到/etc/shells

转载 作者:行者123 更新时间:2023-12-02 07:20:23 25 4
gpt4 key购买 nike

这个作品

$ cat /etc/shells
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.

/bin/bash
/bin/csh
/bin/ksh
/bin/sh
/bin/tcsh
/bin/zsh

但这不是:
sudo -s 'echo /usr/local/bin/zsh >> /etc/shells'
/bin/bash: echo /usr/local/bin/zsh >> /etc/shells: No such file or directory

最佳答案

sudo将字符串作为完整命令。您应该使用 shell 程序来解释您的命令,如下所示:

sudo sh -c 'echo /usr/local/bin/zsh >> /etc/shells'

这将以root特权执行 sh,并且 sh将字符串解释为包含 >>作为输出重定向的shell命令。

关于macos - Mac终端:尝试添加到/etc/shells,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47617679/

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