ecppl(1) Tntnet users guide ecppl(1)NAME
ecppl - language-extractor for ecpp
SYNOPSIS
ecppl [-I dir] [-ln] [-o output-filename] ecpp-filename
DESCRIPTION
Ecppl is the language-extractor for ecpp. Ecpp - the template-language used with tntnet - supports internationalized applications. In
ecpp-templates a tag <i18n> changes the meaning of curly braces. A phrase, which is enclosed in curly braces, can be translated. At run-
time the phrase is looked up in a language-library. This mode can be quit with the tag </i18n>. Phrases must not have newlines or tabs.
Every phrase, which is marked as translatable, is extracted with ecppl and written to standard output or to a specified output-filename
line by line.
OPTIONS -I dir Search include-files in directory. This option can be passed multiple times. All specified directories are searched in turn for
include-files.
-l Extract language-phrases (the default)
-n Extract non-language-phrases
-o filename
Specify output filename
AUTHOR
This manual page was written by Tommi Makitalo <tommi@tntnet.org>.
SEE ALSO tntnet(1), ecpp(7), ecppll(1).
Tntnet 2006-08-26 ecppl(1)
Check Out this Related Man Page
ecppl(1) Tntnet users guide ecppl(1)NAME
ecppl - language-extractor for ecpp
SYNOPSIS
ecppl [-I dir] [-ln] [-o output-filename] ecpp-filename
DESCRIPTION
Ecppl is the language-extractor for ecpp. Ecpp - the template-language used with tntnet - supports internationalized applications. In
ecpp-templates a tag <i18n> changes the meaning of curly braces. A phrase, which is enclosed in curly braces, can be translated. At run-
time the phrase is looked up in a language-library. This mode can be quit with the tag </i18n>. Phrases must not have newlines or tabs.
Every phrase, which is marked as translatable, is extracted with ecppl and written to standard output or to a specified output-filename
line by line.
OPTIONS -I dir Search include-files in directory. This option can be passed multiple times. All specified directories are searched in turn for
include-files.
-l Extract language-phrases (the default)
-n Extract non-language-phrases
-o filename
Specify output filename
AUTHOR
This manual page was written by Tommi Makitalo <tommi@tntnet.org>.
SEE ALSO tntnet(1), ecpp(7), ecppll(1).
Tntnet 2006-08-26 ecppl(1)
what will the cmd below do?
ls *.3
1 members mentions that to seek all permutations and combinations of the mp3 extension ill have to use curly braces, {} and not, .
what then will do? (13 Replies)
Hi All!
I have obtained following output from a tool "pdftohtml" ::
So, my input is as under:
<text top="246" left="160" width="84" height="16" font="3">Business purpose</text>
<text top="260" left="506" width="220" height="16" font="3">giving the right information and new insights... (3 Replies)
Hi Everyone,
I am trying to write a shell script that can find the longest phrase that appears at least twice in an online news article. The HTML has been parsed through an HTML parser, converted to XML and the article content extracted. I have put this article content in a text file to work... (24 Replies)
Hi
I've got phrases (string) in phrases.txt file and I've got script.sh.
How can I draw out the first line from phrases.txt, save it in variable PHRASE and perform the content of script.sh, and then draw out the second line from phrases.txt, save it in the same variable PHRASE and perform the... (4 Replies)
Hello All. I have an output file which contains the phrase "Total DFT Energy =" and then a number. This occurs many times in the output file, and what I want is to pipe the numbers (which are all different) to a file so I can plot them. How do I grep "Total DFT Energy =" and then get the numbers... (3 Replies)
Hello
I'm (another) newbie in bash scripting (my second day).
I'm trying to locate a phrase in a number of files (multiple files in subdirectories) replace this phrase with another one
and produce an output that contains the filename of the search string occurrence, the row in that file... (4 Replies)
I want to create a computer program that will translate from English to Spanish and vice versa. So someone could type in a word, phrase, or paragraph and translate from one language to another. What programming language would I use to write up the code and then implement this program?
I want to... (8 Replies)
I'm trying to delete everything after (and including) a particular phrase. The phrase that needs to be removed is anything with the letters "KV." For example:
ATHENIA 230KV ATHENISP
BAYONNE 13KV COGEN1
would become:
ATHENIA
BAYONNE
I'm using the following, but i'm not having much luck.... (4 Replies)
We have a huge file which has just one really large line; about 500 MB. I want to
1. Count all the occurrences of a phrase
2. Replace the phrase with another.
Trying to open it using vi has not helped as it complains that it is too large. Can any script help? Please advise.
Thank you, (12 Replies)
1. The problem statement, all variables and given/known data:
Develop a shell script that accepts a phrase and counts the number of times that it is repeated in a specific website.
Note: Im not sure if it's the whole website, or just a specific page but im guessing its thewhole website.
... (2 Replies)
Hi All,
I have incoming source files abcmmyy.txt I need to extract the mmyy part from the filename and pass that to a variable . I really appreciate your quick response on this.
Thanks
raj (7 Replies)
Hi Everyone,
in the below "xyz (Exception e)" part... after the curly braces, there is a new line and immediately few tabs are present before closing curly brace.
xyz (Exception e) {
}
note: there can be one or more newlines between the curly braces.
My desired output should be ... (6 Replies)
Hi,
I have below command in one of the script. Can you please let me know what does the curly braces do over here \{1,\}. The remaining part of the code atleast I am able to understand.
sed -n 's/.*\-\()\{1,\}\)\-.*/\1/p' (13 Replies)
file.txt
apple
apples{
applepicture
apple9
apple cake{
abple
apple_and_cake
appleapple
apple
apple(
and my script
while read line; do
if ]; then
echo "$line"
fi
done <file.txt
read (10 Replies)