- To: <mlh@xxxxxxxxxx>
- Subject: Re: [SLUG] Travan tapes under GNU/Linux (Debian Woody)
- From: "Oscar Plameras" <oscarp@xxxxxxxxxxx>
- Date: Wed, 14 May 2003 14:39:46 +1000
- Cc: slug@xxxxxxxxxxx
- Cc: mlh@xxxxxxxxxx
Cc: <mlh@xxxxxxxxxx>; <slug@xxxxxxxxxxx>
Sent: Wednesday, May 14, 2003 1:17 PM
Subject: Re: [SLUG] Travan tapes under GNU/Linux (Debian Woody)
> I you wanted to avoid the delay and space requirements
> of creating /tmp/tmp.lst, then you could use a named
> pipe, aka fifo:
>
> pipename=/var/run/tar-fifo-$RANDOM
> mknod $pipename p
> find /home -print > $pipename &
> tar zcvf /dev/tape -T $pipename | tee tape.log
>
In this case we can do,
tar zcvf /dev/tape /home | tee tape.log
Can we ?