Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xml2brl(1) [debian man page]

XML2BRL(1)							   User Commands							XML2BRL(1)

NAME
xml2brl - Translate an xml or a text file into an embosser-ready Braille file. SYNOPSIS
xml2brl [OPTION] [inputFile] [outputFile] DESCRIPTION
Translate an xml or a text file into an embosser-ready braille file. This includes translation into grade two, if desired, mathematical codes, etc. It also includes formatting according to a built-in style sheet which can be modified by the user. If inputFile is not specified or '-' input is taken from stdin. If outputFile is not specified the output is sent to stdout. -h, --help display this help and exit -v, --version display version information and exit -f, --config-file name a configuration file that specifies how to do the translation -b, --backward backward translation -r, --reformat reformat a braille file -p, --poorly-formatted translate a poorly formatted file -t, --html html document, not xhtml -C, --config-setting specify particular configuration settings They override any settings that are specified in a config file -l, --log-file write errors to log file instead of stderr AUTHOR
Written by John J. Boyer. REPORTING BUGS
Report bugs to <john.boyer@abilitiessoft.com>. COPYRIGHT
Copyright (C) 2009 ViewPlus Technologies, Inc. and JJB Software, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. SEE ALSO
The full documentation for xml2brl is maintained as a Texinfo manual. If the info and xml2brl programs are properly installed at your site, the command info liblouisxml should give you access to the complete manual. xml2brl (liblouisxml) 2.4.0 June 2012 XML2BRL(1)

Check Out this Related Man Page

LOU_CHECKTABLE(1)						   User Commands						 LOU_CHECKTABLE(1)

NAME
lou_checktable - Test a liblouis Braille translation table SYNOPSIS
lou_checktable [OPTION] TABLE DESCRIPTION
Test a Braille translation table. If the table contains errors, appropriate messages are displayed. If there are no errors the message "no errors found." is shown unless you specify the --quiet option. -h, --help display this help and exit -v, --version display version information and exit -q, --quiet do not write to standard error if there are no errors. AUTHOR
Written by John J. Boyer. REPORTING BUGS
Report bugs to <john.boyer@abilitiessoft.com>. COPYRIGHT
Copyright (C) 2009 ViewPlus Technologies, Inc. and JJB Software, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. SEE ALSO
The full documentation for lou_checktable is maintained as a Texinfo manual. If the info and lou_checktable programs are properly installed at your site, the command info liblouis should give you access to the complete manual. lou_checktable (liblouis) 2.4.1 February 2012 LOU_CHECKTABLE(1)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Reformatting file

Hi, How can I reformat a file (text file) using unix command. This file was FTP'd from Mainframe and contains some garbage character at the end of each line. Each line contains special characters '<soh>' at the end which should have been spaces when I view it in emacs or nedit. I couldnt do find... (2 Replies)
Discussion started by: mrjunsy
2 Replies

2. Shell Programming and Scripting

awk to reformat a text file

I am definitely not an expert with awk, and I want to reformat a text file like the following. This is probably a very easy one for an expert out there. I would like to keep the lines in the same order, but move the heading to only be listed once above the lines. This is what the text file... (7 Replies)
Discussion started by: linux4life
7 Replies

3. Shell Programming and Scripting

How to search for right word using awk?

Hi- I have issue with the code to get the input file reformat --Goal is reformat and print out only column name one per line, leading space or trailing space will be removed... --TABLE1.DDL as input file, and content of file as show below REPLACE VIEW TABLE1 ( ID ,COL1 ... (3 Replies)
Discussion started by: lv99
3 Replies

4. Shell Programming and Scripting

[Solved] File reformat

I am using the code below to reformat the input (hp.txt). The output (newhp.txt) is not in the desired format and I can not seem to figure it out. I have attached both. Thank you. perl -aF/\\t/ -lne 'print join(" ",@F) for ("0 A","0 G","0 C","0 T","A 0","G 0","C 0","T 0")' hp.txt > newhp.txt ... (4 Replies)
Discussion started by: cmccabe
4 Replies