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_TRANSLATE(1)						   User Commands						  LOU_TRANSLATE(1)

NAME
lou_translate - A Braille translator for large scale testing of liblouis Braille translation tables SYNOPSIS
lou_translate [OPTION] TABLE DESCRIPTION
Translate whatever is on standard input and print it on standard output. It is intended for large-scale testing of the accuracy of Braille translation and back-translation. -h, --help display this help and exit -v, --version display version information and exit -f, --forward forward translation using the given table -b, --backward backward translation using the given table If neither -f nor -b are specified forward translation is assumed 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_translate is maintained as a Texinfo manual. If the info and lou_translate programs are properly installed at your site, the command info liblouis should give you access to the complete manual. lou_translate (liblouis) 2.4.1 February 2012 LOU_TRANSLATE(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