Creating a master file of conjugated verbs by concatenating root and inflection from separate files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Creating a master file of conjugated verbs by concatenating root and inflection from separate files
Prev   Next
# 6  
Old 01-17-2018
Thanks a lot, especially for the code and the precious comments. I always assumed that awk respected the order in the file and did not disturb the same.
You made my day.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

creating separate output file for each input file in python

Experts, Need your help for this. Please support My motive is to create seperate output file for each Input Files(File 1 and File2) in another folder say(/tmp/finaloutput) Input files File 1(1.1.1.1.csv) a,b,c 43,17104773,3 45,17104234,4 File 2(2.2.2.2.csv) a,b,c 43,17104773,1... (2 Replies)
Discussion started by: as7951
2 Replies

2. Shell Programming and Scripting

Creating lemmatised forms by concatenating two files

Dear all, I am working on a noun, adjectiveand verb lemmatiser for Sindhi which will eventually be put up as open source for generic use. The tool will take a word and provide all possible forms of the word. To achieve this I have identified the root forms and the eventual suffixes which could... (3 Replies)
Discussion started by: gimley
3 Replies

3. UNIX Desktop Questions & Answers

How can I replicate master master and master master MySQL databse replication and HA?

I have an application desigend in PHP and MySQl running on apache web server that I is running on a Amazon EC2 server Centos. I want to implement the master-master and master slave replication and high availability disaster recovery on this application database. For this I have created two... (0 Replies)
Discussion started by: Palak Sharma
0 Replies

4. Shell Programming and Scripting

Concatenating 3 files into a single file

I have 3 files File1 C1 C2 c3 File 2 C1 c2 c3 File 3 C1 c2 c3 Now i want to have File1 as C1 c2 c3 I File2 as C1 c2 c3 O File3 as c1 c2 c3 D and these 3 files should be concatenated into a single file how can it be done in unix script? (3 Replies)
Discussion started by: Codesearcher
3 Replies

5. UNIX for Dummies Questions & Answers

Creating a file where the owner and group is not root

Hi, I'm the root user on my computer, but I'm writing a script that does a lot of file handling. Every time I create a file or directory it automatically requires root privileges. Is there a way I can just create a file that the user can access without a password? For example in my script I... (20 Replies)
Discussion started by: jdilts
20 Replies

6. UNIX for Dummies Questions & Answers

creating separate directories according to file extension and keeping file in different directory as

unix program to which a directory name will be passed as parameter. This directory will contain files with various extensions. This script will create directories with the names of the extention of the files and then put the files in the corresponding folder. All files which do not have any... (2 Replies)
Discussion started by: Deekay.p
2 Replies

7. Shell Programming and Scripting

Concatenating lines of separate files using awk or sed

For example: File 1: abc def ghi jkl mno pqr File 2: stu vwx yza bcd efg hij klm nop qrs I want the reult to be: abc def ghistu vwx yza jkl mno pqrbcd efg hij klm nop qrs (4 Replies)
Discussion started by: tamahomekarasu
4 Replies

8. Shell Programming and Scripting

Concatenating Files In A Year/Month/Day File Structure

Hi Im trying to concatenate a specific file from each day in a year/month/day folder structure using Bash or equivalent. The file structure ends up like this: 2009/01/01/products 2009/01/02/products .... 2009/12/31/products The file I need is in products everyday and I need the script to... (3 Replies)
Discussion started by: Grizzly
3 Replies

9. Shell Programming and Scripting

Break a file into separate files

Hello I am facing a scenario where I have a file with XML content and I am running shell script over it. But the problem is the XML is getting updated with new services. In the below scenario, my script takes values from the xml file from one service name say ABCD. Since there are multiple, it is... (8 Replies)
Discussion started by: chiru_h
8 Replies
Login or Register to Ask a Question
french-deconjugator(1)													    french-deconjugator(1)

NAME
french-deconjugator - analyze conjugated French verbs SYNOPSIS
echo aime | french-deconjugator > result.txt DESCRIPTION
french-deconjugator reads conjugated French verbs from the command line or from standard input and writes (to standard output) the verb's infinitive form, the mode (infinitive, indicative, conditional, subjunctive, imperative or participle), the tense (present, past, imper- fect, future), the person (1, 2 or 3, while 0 is used for the present participle tense, and 4 and 5 are used in the past participle tense), and the number (singular or plural). These fields are separated by a comma and a space. The standard input is not read if verbs are passed as command-line arguments. By convention, persons 4 and 5 are used in the past participle tense to indicate the gender: 4 means masculine (e.g., "aime" or "aimes") and 5 means feminine (e.g., "aimee" or "aimees"). A single conjugated form can correspond to more than one mode, tense and person. In this case, each alternative is written on its own line. In all cases, the end of the answer is marked by an empty line. If the word is unknown, only this empty line is written. The names for the mode, tense and number are always in English. (This is meant to facilitate automatic parsing of the output. For a French user inter- face, see the GNOME application and applet.) The command flushes its output buffer after finishing each answer. This allows the command to be easily called from another program through two pipes. The command starts by loading its database from XML files (stored typically in /usr/share/verbiste). This takes some time, so it is a good idea to have the command answer many requests instead of running it for each request. The verbiste library's source archive contains Perl and Java example programs that illustrate this technique. This commands expects to read Latin-1 characters and writes Latin-1 characters. There must not be any leading or trailing white spaces on the lines read by the command. OPTIONS
--help display a help page and exit --version display version information and exit --lang=L select the language to use (fr for French or it for Italian); French is the default language --utf8 assume that the terminal uses the UTF-8 encoding instead of Latin-1 (ISO-8859-1); try this option if Verbiste claims not to know a verb that contains an accented character --all-infinitives print the infinitive form of all the verbs in the knowledge base, one per line, unsorted; other command-line arguments are ignored EXAMPLES
$ french-deconjugator aime aimer, participle, past, 0, singular $ echo -ne 'a plu ete ' | french-deconjugator avoir, indicative, present, 3, singular plaire, participle, past, 0, singular pleuvoir, participle, past, 0, singular etre, participle, past, 0, singular LICENSE
This program is free software; you may redistribute it under the terms of the GNU General Public License. This program has absolutely no warranty. AUTHOR
See the verbiste(3) manual page. BUGS
See the verbiste(3) manual page. SEE ALSO
verbiste(3), french-conjugator(1). April 28th, 2012 french-deconjugator(1)