sudo echo “something” >> /etc/privilegedFile doesn't work
这是一个非常简单的问题,至少看起来应该是关于Linux中的sudo权限。
很多时候,我只是想在
有没有什么方法可以使这项工作不需要
使用
1 | echo 'deb blah ... blah' | sudo tee -a /etc/apt/sources.list |
确保避免引号内的引号。
要避免将数据打印回控制台,请将输出重定向到/dev/null。
1 | echo 'deb blah ... blah' | sudo tee -a /etc/apt/sources.list > /dev/null |
问题是shell执行输出重定向,而不是sudo或echo,所以这是作为常规用户执行的。
尝试以下代码段:
1 | sudo sh -c"echo 'something' >> /etc/privilegedfile" |
问题是,处理重定向的是您的shell;它试图以您的权限打开文件,而不是以sudo方式运行的进程。
也许可以这样使用:
1 | sudo sh -c"echo 'something' >> /etc/privilegedfile" |
1 | sudo sh -c"echo 127.0.0.1 localhost >> /etc/hosts" |
做
1 | sudo sh -c"echo >> somefile" |
应该工作。问题是>和>>是由shell处理的,而不是由"sudoed"命令处理的,因此权限是您自己的,而不是您要"sudoing"的用户的权限。
我要注意的是,出于好奇,您也可以引用一个Heredoc(对于大的块):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | sudo bash -c"cat <<EOIPFW >> /etc/ipfw.conf <?xml version="1.0" encoding="UTF-8"?> <plist version="1.0"> <dict> <key>Label</key> <string>com.company.ipfw</string> <key>Program</key> <string>/sbin/ipfw</string> <key>ProgramArguments</key> <string>/sbin/ipfw</string> <string>-q</string> <string>/etc/ipfw.conf</string> </array> <key>RunAtLoad</key> <true></true> </dict> </plist> EOIPFW" |
在bash中,可以使用
1 | echo"# comment" | sudo tee -a /etc/hosts > /dev/null |
用yoo的答案,把这个放在你的
1 2 3 4 | sudoe() { [["$#" -ne 2 ]] && echo"Usage: sudoe <text> <file>" && return 1 echo"$1" | sudo tee --append"$2"> /dev/null } |
现在你可以运行
编辑:
一个更完整的版本,允许您通过管道输入或从文件中重定向,并包括一个用于关闭附加的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | sudoe() { if ([["$1" =="-a" ]] || [["$1" =="--no-append" ]]); then shift &>/dev/null || local failed=1 else local append="--append" fi while [[ $failed -ne 1 ]]; do if [[ -t 0 ]]; then text="$1"; shift &>/dev/null || break else text="$(cat <&0)" fi [[ -z"$1" ]] && break echo"$text" | sudo tee $append"$1">/dev/null; return $? done echo"Usage: $0 [-a|--no-append] [text] <file>"; return 1 } |
您也可以使用
1 | echo 'Add this line' | sudo sponge -a privfile |
echo'hello world'(sudo tee-a/etc/apt/sources.list)
通过将sed-i与$a一起使用,您可以在最后一行后面附加包含变量和特殊字符的文本。
例如,向/etc/hosts添加带有$new_ip的$new_主机:
1 | sudo sed -i"\$ a $NEW_IP\t\t$NEW_HOST.domain.local\t$NEW_HOST" /etc/hosts |
SED选项说明:
- -我在原地
- 最后一行
- 追加的
这对我很有用:原始命令
1 | echo"export CATALINA_HOME="/opt/tomcat9"">> /etc/environment |
工作指令
1 | echo"export CATALINA_HOME="/opt/tomcat9"" |sudo tee /etc/environment |
在使用
1 2 3 | sudo chown youruser /etc/hosts sudo cat /downloaded/hostsadditions >> /etc/hosts sudo chown root /etc/hosts |
像这样对你有用吗?