Non-ASCII char prevents conversion of manpage to plain text


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Non-ASCII char prevents conversion of manpage to plain text
# 1  
Old 09-10-2010
Question Non-ASCII char prevents conversion of manpage to plain text

Hello,

I would like to export manual pages to plain text files.

man CommandName | col -bx > CommandName.txt

The above statement works successfully on Mac OS X. However, it often fails on my old Linux. The problem occurs if the source file of the manpage contains an escape sequence for Non-ASCII character such as "\(co" for the copyright character (0xA9).

Whenever "col -bx" encounters an non-ASCII character (0x80 through 0xFF), it aborts any further process and displays the error message, "Invalid or incomplete multibyte or wide character".

The man command on Mac OS X automatically converts non-ASCII characters into ASCII equivalents such as "(C)" for the copyright character. Therefore, col does not receive non-ASCII characters, and the job successfully completes.

On the other hand, the man command on my old Linux does not convert non-ASCII characters into ASCII equivalents. Therefore, col receives non-ASCII characters, and the job fails.

Please suggest me appropriate solutions for this problem.

Is it possible to force the man command on my old Linux to convert non-ASCII characters into ASCII equivalents? Or, is it possible to force the col command to accept non-ASCII characters?

Here are some examples of failed CommandNames with their non-ASCII characters that caused the failures.

find (curly quote, 0xB4)
hexdump (middle dot, 0xB7)
ln (copyright char, 0xA9)

Many thanks in advance.
# 2  
Old 09-10-2010
TERM=lpr man ls >ls.txt

---------- Post updated at 10:08 AM ---------- Previous update was at 10:04 AM ----------

Aack...

LANG=C TERM=lpr man ln >ln.txt
# 3  
Old 09-11-2010
Question

Quote:
Originally Posted by cjcox
LANG=C TERM=lpr man ln >ln.txt
.

The code presented by cjcox does not work at all. Setting the environment variable TERM to lpr does not seem to change the behavior of man. The man command still outputs non-ASCII characters. Furthermore, because he omitted col, the resultant ln.txt is illegible when opened with KWrite. I wonder if cjcox was just kidding.
# 4  
Old 09-11-2010
Try:
Code:
LANG=C man ln > ln.txt

# 5  
Old 09-13-2010
Well.. I wasn't kidding. It really does depend on what system we're looking at though. Not everything is well written everywhere and Linux's man (again, there ARE multiple implementations though) in general has some integration to the locale and terminal (which could be arguably the wrong thing, but man is a weird thing without doing some kind of terminal consideration given it's end user is typically human or at least something terminal like).

So... what OS and version in particular could really help in diagnosing this.

---------- Post updated at 10:33 AM ---------- Previous update was at 10:33 AM ----------

Well.. I wasn't kidding. It really does depend on what system we're looking at though. Not everything is well written everywhere and Linux's man (again, there ARE multiple implementations though) in general has some integration to the locale and terminal (which could be arguably the wrong thing, but man is a weird thing without doing some kind of terminal consideration given it's end user is typically human or at least something terminal like).

So... what OS and version in particular could really help in diagnosing this.
# 6  
Old 10-06-2010
I have found a solution. The configuration file /usr/lib/man.conf needs to be modified as I will explain below.

The man command internally calls nroff and/or groff. It also calls geqn or eqn. The file "man.conf" contains some lines that define how man will call nroff, groff, geqn and/or eqn with what options. The "-Tlatin1" option in man.conf allows man to output non-ASCII characters (0x80 through 0xFF). By replacing "-Tlatin1" with "-Tascii, man no longer outputs non-ASCII characters, and man automatically converts non-ASCII characters into ASCII equivalents such as "(C)" for the copyright character.

Before the modification:
NROFF /usr/bin/nroff -Tlatin1 -mandoc
NEQN /usr/bin/geqn -Tlatin1

After the modification:
NROFF /usr/bin/nroff -Tascii -mandoc
NEQN /usr/bin/geqn -Tascii

After the modification to "man.conf", the following command line successfully exports manual pages to plain text files.

man CommandName | col -bx > CommandName.txt



By the way, piping to "col" is necessary. Without "col", the resultant text would not be plain. The direct output from man is not plain text. The fact that the output from man to stdout (terminal) contains bold-face letters and underscored letters suggests that the text is not plain.

In fact, let the output from man be redirected to a file without "col" as shown below, and open the file with GUI-based text editor (e.g., TextEdit on Mac OS X, KWrite on KDE-equipped Linux, NotePad on Windows).

man ln > ln.txt

Then, you will see a bunch of illegible strings like the following, proving that the output is not plain text.

N[]NA[]AM[]ME[]E
S[]SY[]YN[]NO[]OP[]PS[]SI[]IS[]S
D[]DE[]ES[]SC[]CR[]RI[]IP[]PT[]TI[]IO[]ON[]N

The man command outputs lots of backspace characters, which are illegal in plain text. On GUI-based text editors, you will see square characters in place of backspace characters. Since it is difficult to display square characters on this web page, I used [] to represent a square character.


The "col" command converts the above illegible strings into the following plain text.

NAME
SYNOPSIS
DESCRIPTION

Thus, "col" is absolutely necessary to obtain plain text from "man".


I thank cjcox and Franklin52 for trying to help me. I apologize cjcox for mistaking his generous help for a joke.

Last edited by LessNux; 10-06-2010 at 05:51 AM..
This User Gave Thanks to LessNux For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

EBCDIC to ASCII conversion

Hi, We have a mainframe file which is in EBCDIC format.We dont have direct access to mainframe ,client has provided us the mainframe file.The mainframe file is containing pact data(COMP1 ,COMP2 etc) which are unreadble.Can anyone suggest me how to convert this kind of ebcdic file to ascii... (11 Replies)
Discussion started by: swapna_1990
11 Replies

2. UNIX for Advanced & Expert Users

EBCDIC to ASCII conversion

Hi, I have a input file which is EBCIDIC and it has packed decimals. Can anyone help me to convert EBCIDIC file to ASCII(Need to convert even Packed decimal values also to normal format). Thanks swapna (12 Replies)
Discussion started by: swapna_1990
12 Replies

3. Programming

Invalid conversion from char* to char

Pointers are seeming to get the best of me and I get that error in my program. Here is the code #include <stdio.h> #include <stdlib.h> #include <string.h> #define REPORTHEADING1 " Employee Pay Hours Gross Tax Net\n" #define REPORTHEADING2 " Name ... (1 Reply)
Discussion started by: Plum
1 Replies

4. Shell Programming and Scripting

ASCII to UTF-8 conversion

I Am trying to change the file encoding from ASCII to UTF-8 using below command iconv -f ASCII -t UTF-8 <input_file> > <output_file> But the output_file is not actually in UTF-8 format. If I use the file command to check the file encoding it still says ASCII. While converting am not... (5 Replies)
Discussion started by: Sriranga
5 Replies

5. Programming

error: invalid conversion from ‘const char*’ to ‘char*’

Compiling xpp (The X Printing Panel) on SL6 (RHEL6 essentially): xpp.cxx: In constructor ‘printFiles::printFiles(int, char**, int&)’: xpp.cxx:200: error: invalid conversion from ‘const char*’ to ‘char*’ The same error with all c++ constructors - gcc 4.4.4. If anyone can throw any light on... (8 Replies)
Discussion started by: GSO
8 Replies

6. UNIX for Dummies Questions & Answers

Conversion from EBCDIC to ASCII

when i try to convert a mainframe EBCDIC file to ASCII ,i dont see correct file this is the source file ... (3 Replies)
Discussion started by: venkatvelpula
3 Replies

7. Shell Programming and Scripting

need help with ascii to decimal conversion

Hi, Can anyone please help me ascci to decimal conversion in bash I have a file which contains stream of numbers like this,these are ascci values 729711810132973278105991013268971213233 I want to covert it to its actual value like upper code's decimal is "Have a Nice Day!" ... (15 Replies)
Discussion started by: sunilmenhdiratt
15 Replies

8. Shell Programming and Scripting

help needed with ASCII conversion

I have a file say "codefile" here ,contains data like this Hi! How are you? I need to covert this data into stram of equivalant ASCII values I wrote follwoing script. #!/bin/bash while read -n1 char do printf "%d" \'$char done < codefile this gives me output ... (4 Replies)
Discussion started by: sunilmenhdiratt
4 Replies

9. Shell Programming and Scripting

ascii conversion

after converting my ebcidic file to ascii i get the following output 2097152+0 records in 1797345+1 records out Why is there a difference in number of records. Is the converson chopping off any records. All i am doing is just a conversion using the following script dd if=xaa cbs=152 ... (0 Replies)
Discussion started by: rintingtong
0 Replies

10. Shell Programming and Scripting

ASCII to char convertion

I am writing the script to encrypt and decrypt content of the text file. How can I convert ASCII to characters and backward? I need it for Bourne shell script. Thanks::confused: (3 Replies)
Discussion started by: woody
3 Replies
Login or Register to Ask a Question