apertium-validate-modes(1)apertium-validate-modes(1)NAME
apertium-validate-modes - This application is part of ( apertium )
This tool is part of the apertium open-source machine translation toolbox: http://www.apertium.org.
SYNOPSIS
apertium-validate-modes <input_file>
DESCRIPTION
This is an intermediate tool from Apertium level 2 engine. You should never have to use it independently.
It is a script that validates a modes.xml file against the apertium structural modes DTD using the xmllint utility.
OPTIONS
It has no options.
FILES
input_file A modes.xml file
modes.dtd The DTD used to validate the input file.
SEE ALSO apertium-gen-modes(1), apertium-gen-oldbil(1), apertium-interchunk(1), apertium-validate-postchunk(1), apertium-validate-interchunk(1).
BUGS
Lots of them...lurking in the dark and waiting for you!
AUTHOR
Copyright (c) 2005-2007 Universitat d'Alacant / Universidad de Alicante. This is free software. You may redistribute copies of it under
the terms of the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
2006-03-11 apertium-validate-modes(1)
Check Out this Related Man Page
apertium-gen-modes(1)apertium-gen-modes(1)NAME
apertium-gen-modes - This application is part of ( apertium )
This tool is part of the apertium machine translation architecture: http://apertium.org.
SYNOPSIS
apertium-gen-modes modes-file [package name]
DESCRIPTION
This is an intermediate tool from Apertium level 2 engine. You should never have to use it independently.
It creates a series of .mode files from a modes-file these files are then put into the current directory if they are marked as install, and
for modes that are not to be installed, for example debugging modes, these are put into a modes directory inside the linguistic data.
OPTIONS
If a package name is specified, it creates the modes with the apertium install prefix plus the package name. If you wish to install the
modes, you should specify the package name. If you don't want to install the modes, leave it off.
FILES
modes-file A XML file that tells apertium-gen-modes which scripts must be created in the directory modes.
SEE ALSO apertium-interchunk(1), apertium-postchunk(1), apertium-validate-interchunk(1), apertium-validate-modes(1), apertium-validate-postchunk(1).
BUGS
Lots of them...lurking in the dark and waiting for you!
AUTHOR
(c) 2005-2007 Universitat d'Alacant / Universidad de Alicante. This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
2007-03-11 apertium-gen-modes(1)
how do i validate y script so that it only accepts values between 1 and 3 and against any character input, cause at the moment i can only validate against numbers outside 1 and 3 but not characters
cheers (4 Replies)
Hi
Do you have any pointers how to validate numbers (not to contain alphabets and special characters) and date(MM/DD/YYYY) format.
I used following regular expression to validate integer, which is not working in the default shell:
nodigits="$(echo $testvalue | sed 's/]//g')"
... (4 Replies)
Hello,
I have a file with a lot of record like below:
00001,CUSTR,CUSTOMER ADDRESS,02310,N,0:00,0,0,0,0,0,0,0,0,0,0,0,0:00,0,0,0,0,0,CSH,ACC
Can I validate each record in the file and output the incorrect result?
field 1 - customer number, should be "5 digit.
field 2 - should be 5... (9 Replies)
Dear guru's,
I am learning shellscripting and now I 'm struggeling with this problem:
When the number in the left column is equal or higer then 200, I want to send an email to "postmaster" @ the corresponding domain in the right column.
220 shoes.com
217 dishwashers.net
209 ... (11 Replies)
Hi,
I have a requirement wherein, I need to validate a user input of the numbers that are comma separated.
E.g . The input should be in the format 1,2,3...n (count of numbers is not known) . The user has to mention the input in this format, else it should exit from the program.
... (5 Replies)
Hi
I have an input CSV file which contains some values
Format of file is as follows:
32R01000000003144476;32R01000000029054270;1000;6000;12/12/2007;0382521276;REG;Régulari
I just need to validate it whether it is ';' seperated ie (if any other seperator is used it shld give an error)
How do... (5 Replies)
Hi guys, I use this function which was provided to me by someone at this site. It works perfectly for validating a users input option against allowed options..
example:
validateInput "1" "1 3 4 5" would return 0 (success)
function validateInput {
input=$1
allowedInput=$2
for... (4 Replies)
Is there an easy way to validate an input field size. Let us say a script is asking to enter 10 digits mobile number, how do I write a script to validate it is numeric and is 10 digits in length? I just need an easy way w/o using looks ...etc. Is there such a away ?
Here is what I have so far... (6 Replies)
I have about 20 xml files I want to use xmllint to pretty print:
xmllint --format file01.xml > pretty_file01.xml
xmllint --format file02.xml > pretty_file02.xml
etc
Is there a way I can just use "xmllint --format" on all the current xml files so I don't have to run this command 20 times?? :( (5 Replies)
Hi,
I trust that you are well - I'm a bit new into AIX and I've been assigned a task to write a script that will always validate between our two Prod (Prod A and Prod B) environments to confirm which prod we live at. The two environments are exact replicas and this check I need to put in... (5 Replies)
I have this XML file format and all in one line:
Fri Dec 23 00:14:52 2016 Logged Message:689|<?xml version="1.0" encoding="UTF-8"?><PORT_RESPONSE><HEADER><ORIGINATOR>XMG</ORIGINATOR><DESTINAT... (16 Replies)
I'm trying to use a regular expression to validate a value for sleep entered by the user. The test should fail all negative values and 0 but let pass all combinations of + . and digits that would amount to a valid parameter for sleep.
Examples for valid: 1, 1.5, .5, 0.5, +1, +.5, +1.3 etc.... (9 Replies)