Operating System - HP-UX
1827260 Members
2044 Online
109717 Solutions
New Discussion

Running catman -w ..I get this message

 
SOLVED
Go to solution
jazz_1
Frequent Advisor

Running catman -w ..I get this message

stdin: not in compressed format


what does it mean?

cheers,

J
7 REPLIES 7
Steven E. Protter
Exalted Contributor
Solution

Re: Running catman -w ..I get this message

It would appear some the manuals were not compressed. Or at least one. You may get an error message when you use the affected man page.

I would run some tests.

It could be man pages delivered by third parties in the wrong format.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
jazz_1
Frequent Advisor

Re: Running catman -w ..I get this message

Thanks SEP,

what tests could I run?


J
Steven E. Protter
Exalted Contributor

Re: Running catman -w ..I get this message

Test the man pages.

You might want to script it.

I'd be thorough and picka reasonable sample.

man tar
man catman

It might be just one file, which means you can probably afford to deal with it when its discovered.

It might be a bigger problem that requires reinstallation of software or at least the man page portions.

What man page is broken will determine what corrective action is needed.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
RAC_1
Honored Contributor

Re: Running catman -w ..I get this message

It would be easy to goto dir /usr/share/man and look for uncompressed file.

find /usr/share/man/*.Z -type f ! -name *.Z -print \;

Anil

There is no substitute to HARDWORK
jazz_1
Frequent Advisor

Re: Running catman -w ..I get this message

thanks guys
Amit Agarwal_1
Trusted Contributor

Re: Running catman -w ..I get this message

Further to it, if you don't mind doing dirty things yourself, you can compress the file and rename it and continue with catman.

Let's say xyz.n is in uncompressed format.

$ compress xyz.n
$ ls
xyz.n.Z
$ mv xyz.n.Z xyz.n
$ catman ......

Please take a back up if you are unsure of what you are doing.
jazz_1
Frequent Advisor

Re: Running catman -w ..I get this message

!