Can 'tar' on AIX extract to stdout? On Linux, one can 'tar -x0'. I can't seem to find the equivalent with the version that comes with AIX v5.3.
I'm putting together a self-extracting archive for my app. I'd like to automatically display a license/copyright file that is included in my archive. On Linux, I can do:
tail +$SKIP $0 | gzip -dc | tar -xO License.txt | more
and ask the user to agree before extracting the whole archive. What would be a good way to do that in AIX?
Thanks,
JP
I'm putting together a self-extracting archive for my app. I'd like to automatically display a license/copyright file that is included in my archive. On Linux, I can do:
tail +$SKIP $0 | gzip -dc | tar -xO License.txt | more
and ask the user to agree before extracting the whole archive. What would be a good way to do that in AIX?
Thanks,
JP