Hi! Thanks for the great ports!
When I do a find c:\docs | cpio -oc > test.cpio all is ok...... but,
find c:\docs | cpio -oc | bzip2 > test.cpio.bz2
Fails with: Sdout is closed: Permission denied.
However, I can do
type c:\config.sys | bzip2 > test.bz2
Any Ideas?
TIA
Tim
Do find C:\docs | cpio -oc > temp.cpio type temp.cpio | bzip2 > test.bz2
Does that work?
J Yoder
Hi! Thanks for the great ports!
When I do a
find c:\docs | cpio -oc > test.cpio
all is ok...... but,
find c:\docs | cpio -oc | bzip2 > test.cpio.bz2
Fails with:
Sdout is closed: Permission denied.
However, I can do
type c:\config.sys | bzip2 > test.bz2
Any Ideas?
TIA
Tim
Do
find C:\docs | cpio -oc > temp.cpio
type temp.cpio | bzip2 > test.bz2
Does that work?
J Yoder