Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 25 Aug 1996 07:18:18 -0500
From:      "Daniel M. Eischen" <deischen@iworks.InterWorks.org>
To:        questions@FreeBSD.ORG, reyes01@ibm.net
Subject:   Re: How to get tar to read input files from file?
Message-ID:  <9608251218.AA12147@iworks.InterWorks.org>

next in thread | raw e-mail | index | archive | help

> I have a book which has a line like
> tar -cvf /dev/fd0 'cat backup.list'>backup.log
>
> It is supposed to read the file names from a file called backup.list.
> When I try it it dowsn't work. I tried also using <backup.list and
> that didn't work either.
>
> Any suggestions on how to pipe a file to tar to read input files?

You've got the quotes going in the wrong direction (' != `).
The backwards quote (what's the name of this guy?) causes
execution of whatever it surrounds.  Use this:

  tar -cvf /dev/fd0 `cat backup.list` > backup.log

Dan Eischen
deischen@iworks.InterWorks.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?9608251218.AA12147>