这是一个非常简单的问题,至少看起来应该是这样,关于Linux中的sudo权限。
有很多时候,我只是想在/etc/hosts或类似的文件中添加一些内容,但最终无法添加,因为>和>>都不允许,即使使用root也不允许。
/etc/hosts
>
>>
有没有什么方法可以让这个工作,而不需要su或sudo su进入根目录?
su
sudo su
sudo sh -c "echo 127.0.0.1 localhost >> /etc/hosts"
问题是shell执行输出重定向,而不是sudo或echo,所以这是作为普通用户执行的。
试试下面的代码片段:
sudo sh -c "echo 'something' >> /etc/privilegedfile"
问题是处理重定向的是你的shell;它试图用你的权限打开文件,而不是那些你在sudo下运行的进程。
可以使用这样的语句:
sudo sh -c "echo 'something' >> /etc/privilegedFile"
做
sudo sh -c "echo >> somefile"
应该工作。问题是>和>>是由shell处理的,而不是由“sudoed”命令处理的,所以权限是您的,而不是您正在“sudo”进入的用户的权限。
使用tee --append或tee -a。
tee --append
tee -a
echo 'deb blah ... blah' | sudo tee -a /etc/apt/sources.list
注意不要在引号里加引号。
为了避免将数据打印回控制台,请将输出重定向到/dev/null.
echo 'deb blah ... blah' | sudo tee -a /etc/apt/sources.list > /dev/null
-a
--append
tee
我想指出的是,对于好奇的人来说,你也可以引用一个heredoc(对于大的区块):
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> <array> <string>/sbin/ipfw</string> <string>-q</string> <string>/etc/ipfw.conf</string> </array> <key>RunAtLoad</key> <true></true> </dict> </plist> EOIPFW"
在bash中,您可以将tee与> /dev/null结合使用以保持标准输出干净。
> /dev/null
echo "# comment" | sudo tee -a /etc/hosts > /dev/null
使用Yoo的回答,把这个放在你的~/.bashrc:
~/.bashrc
sudoe() { [[ "$#" -ne 2 ]] && echo "Usage: sudoe <text> <file>" && return 1 echo "$1" | sudo tee --append "$2" > /dev/null }
现在可以运行sudoe 'deb blah # blah' /etc/apt/sources.list
sudoe 'deb blah # blah' /etc/apt/sources.list
编辑:
一个更完整的版本,允许你管道输入或重定向从一个文件,包括-a开关关闭追加(默认是打开的):
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 }
您是否可以更改文件的所有权,然后在使用cat >>追加后将其更改回来?
cat >>
sudo chown youruser /etc/hosts sudo cat /downloaded/hostsadditions >> /etc/hosts sudo chown root /etc/hosts
这样的东西对你有用吗?
echo "export CATALINA_HOME="/opt/tomcat9"" >> /etc/environment
工作命令
echo "export CATALINA_HOME="/opt/tomcat9"" |sudo tee /etc/environment
通过使用Sed -i 和< / em >一美元,可以在最后一行之后追加包含变量和特殊字符的文本。
例如,将$NEW_HOST和$NEW_IP添加到/etc/hosts:
sudo sed -i "\$ a $NEW_IP\t\t$NEW_HOST.domain.local\t$NEW_HOST" /etc/hosts
Sed选项说明:
你也可以使用moreutils包中的sponge,而不需要重定向输出(即,没有tee噪声隐藏):
moreutils
sponge
echo 'Add this line' | sudo sponge -a privfile
echo 'Hello World' | (sudo tee -a /etc/apt/sources.list)
有些用户在使用多条线路时不知道如何解决。
sudo tee -a /path/file/to/create_with_text > /dev/null <<EOT line 1 line 2 line 3 EOT