Mail Archives: djgpp/1997/02/02/06:27:28
On Sat, 1 Feb 1997, Colin W. Glenn wrote:
> FUNCTION validfileex$ (lix AS STRING, lox AS STRING)
> SHELL "\zip\tar -f " + lox + " -novx " + lix + " >temp.dat"
> (...)
> END FUNCTION
Use this:
djtar -x -p -o /dir/subdir/file archive.tar >temp.dat
this will put only the file named after the -o switch to temp.dat.
> DJTAR doesn't seem to operate as such, it extract 'in full' and it appears to
> write to stderr, redirection fails.
Use redir to redirect stderr.
- Raw text -