JD wrote:
> cd /var/lib
> sudo tar cjf - rpm > rpm.tar.bz2
> sh: rpm.tar.bz2: cannot create [Permission denied]

Why use f - and then redirect stdout when you could just do:

sudo tar cjf rpm.tar.bz2 rpm

?

> Is this an established legacy behaviour of sudo?

This is the way it has always been and will always be.

If you do find other cases where you need this sort of thing, a common
idiom involves tee:

echo foo | sudo tee /path/to/some/root/owned/file > /dev/null

-- 
Todd        OpenPGP -> KeyID: 0xBEAF0CE3 | URL: www.pobox.com/~tmz/pgp
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
We are not to expect to be transported from despotism to liberty in a
featherbed.
    -- Thomas Jefferson

Attachment: pgpL8v2RNea2K.pgp
Description: PGP signature

-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines

Reply via email to