Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been given sudo access on one of our development RedHat linux boxes, and I seem to find myself quite often needing to redirect output to a location I don't normally have write access to.

The trouble is, this contrived example doesn't work:

sudo ls -hal /root/ > /root/test.out

I just receive the response:

-bash: /root/test.out: Permission denied

How can I get this to work?

share|improve this question

10 Answers

up vote 146 down vote accepted

Your command does not work because the redirection is performed by your shell which does not have the permission to write to /root/test.out. The redirection of the output is not performed by sudo.

There are multiple solutions:

  • Run a shell with sudo and give the command to it by using the -c option:

    sudo sh -c 'ls -hal /root/ > /root/test.out'
    
  • Create a script with your commands and run that script with sudo:

    #!/bin/sh
    ls -hal /root/ > /root/test.out
    

    Run sudo ls.sh

  • Launch a shell with sudo and then run your commands:

    $ sudo -s
    % ls -hal /root/ > /root/test.out
    % ^D
    $
    
  • Use sudo tee (if you have to escape a lot when using the -c option):

    sudo ls -hal /root/ | sudo tee /root/test.out > /dev/null
    

    The redirect to /dev/null is needed to stop tee from outputting to the screen. Just in case someone needs it: to append to the output file, use tee -a or tee --append.

Thanks go to Jd, Adam J. Forster and Johnathan for the second, third and fourth solutions.

share|improve this answer
2  
Rather than sudo sh -c 'ls -hal /root/ > /root/test.out' I like doing sudo -s 'ls -hal /root/ > /root/test.out'. Shorter and sweeter. – Velmont Sep 30 '12 at 16:50
@Velmont: sudo -s 'ls -hal /root/ > /root/test.out' => /bin/bash: ls -hal /root/ > /root/test.out: No such file or directory. I'm using sudo-1.8.3p1-7.fc17.x86_64 and bash-4.2.39-1.fc17.x86_64. – Cristian Ciupitu Nov 30 '12 at 9:11
@Velmont: I agree that it is shorted and sweeter, but your solution did not work for me either (Debian 6). – Martijn de Milliano Jan 7 at 19:39

Someone here has just suggested sudoing tee:

sudo ls -hal /root/ | sudo tee /root/test.out > /dev/null

This could also be used to redirect any command, to a directory that you do not have access to. It works because the tee program is effectively an "echo to a file" program, and the redirect to /dev/null is to stop it also outputting to the screen to keep it the same as the original contrived example above.

share|improve this answer

The problem is that the command gets run under sudo, but the redirect gets run under your user. This is done by the shell and there is very little you can do about it.

[dsm@localhost:~]$ sudo command > /some/file.log
                   `-----v-----'`-------v-------'
                      command        redirect

The usual ways of bypassing this are:

  • Wrap the commands in a script which you call under sudo
    If the commands and/or log file changes, you can make the script take these as arguments. For example:
    sudo log_script command /log/file.txt
  • Call a shell and pass the command line as a parameter with `-c`
    This is especially useful for one off compound commands. For example:
    sudo bash -c "{ command1 arg ; command2 arg ; } > /log/file.txt;"
share|improve this answer

A trick I figured out myself was

sudo ls -hal /root/ | sudo dd of=/root/test.out
share|improve this answer
sudo dd is better than the sudo tee /root/file > /dev/null examples above! – kristianlm Mar 6 at 12:45
nah, having to learn another weird, obscure command with weird, obscure syntax (of=..., really!) is not 'better'. – Steve Bennett May 13 at 2:16

Make sudo run a shell, like this:

sudo sh -c "echo foo > ~root/out"
share|improve this answer

How about writing a script?

Filename: myscript

#!/bin/sh

/bin/ls -lah /root > /root/test.out

# end script

Then use sudo to run the script:

sudo ./myscript
share|improve this answer
1  
That'd look much better if you wrapped your script in <pre>...</pre>, or indented each line with 4 spaces :) – David Precious Sep 17 '08 at 11:50

Whenever I have to do something like this I just become root:

# sudo -s
# ls -hal /root/ > /root/test.out
# exit

It's probably not the best way, but it works.

share|improve this answer

Maybe you been given sudo access to only some programs/paths? Then there is no way to do what you want. (unless you will hack it somehow)

If it is not the case then maybe you can write bash script:

cat > myscript.sh
#!/bin/sh
ls -hal /root/ > /root/test.out 

Press ctrl + d :

chmod a+x myscript.sh
sudo myscript.sh

Hope it help.

share|improve this answer
Thanks for the complete start-to-finish demo. :) – Jonathan Sep 17 '08 at 12:29

I would do it this way:

sudo su -c 'ls -hal /root/ > /root/test.out'
share|improve this answer
That actually seems a bit cleaner, as you don't need to explicitly specify the shell. – Steve Bennett May 13 at 2:13

Yet another variation on the theme:

sudo bash <<EOF
ls -hal /root/ > /root/test.out
EOF

Or of course:

echo 'ls -hal /root/ > /root/test.out' | sudo bash

They have the (tiny) advantage that you don't need to remember any arguments to sudo or sh/bash

share|improve this answer
+1 for <<EOF syntax – Jonathan May 13 at 7:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.