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 h
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.