Sponsored Content
Operating Systems AIX Ajout colonne calcuée ds un fichier .txt Post 302460848 by Scott on Thursday 7th of October 2010 07:05:03 PM
Old 10-07-2010
Hello.

Per our forum rules, all posts must be in English.

We do provide translation services for posts from English to a number of languages as a benefit to users. However, posts must be in English.

Please repost in English.

Thank you for your cooperation.

The UNIX and Linux Forums.


Code:
$ awk '{print $0 "..." ++X[$0]}' file1  
000... 1
001... 1
003... 1
004... 1
000... 2
001... 2
003... 2
004... 2

 

10 More Discussions You Might Find Interesting

1. Solaris

Fichier d'erreur

bonjour Ou puis je trouver les fichiers d'erreur (l'équivalent du errpt sous Aix) sous Sun Solaris ? merci (5 Replies)
Discussion started by: pascalbout
5 Replies

2. UNIX for Dummies Questions & Answers

echo "ABC" > file1.txt file2.txt file3.txt

Hi Guru's, I need to create 3 files with the contents "ABC" using single command. Iam using: echo "ABC" > file1.txt file2.txt file3.txt the above command is not working. pls help me... With Regards / Ganapati (4 Replies)
Discussion started by: ganapati
4 Replies

3. Shell Programming and Scripting

Joindre deux fichier avec deux champs de jointure

Hello, I come to you asking you a hand on a script that I have performed on a unix server. I have two files that I have to concatenate in a single line. The first file is created like this: mag;code_art;campagne;st_juillet;st_aout;etc The second file is created like this:... (7 Replies)
Discussion started by: steph70
7 Replies

4. Filesystems, Disks and Memory

ajout d'espace a un FS sous NCR 4.0

Bonjour, J'ai un petit problème, je voudrais savoir comment faire pour ajouter de l'espace disque sur un NCR version 4 et surtout savoir si ce vdisk contient encore de l'espace disponible smp001-4 4.0 3.0 Par exemple sur ce vdisk : /dev/dsk/vdisk15 3940505 3807833 132672 97% /data... (1 Reply)
Discussion started by: magnetic
1 Replies

5. UNIX for Dummies Questions & Answers

find lines in file1.txt not found in file2.txt memory problem

I have a diff command that does what I want but when comparing large text/log files, it uses up all the memory I have (sometimes over 8gig of memory) diff file1.txt file2.txt | grep '^<'| awk '{$1="";print $0}' | sed 's/^ *//' Is there a better more efficient way to find the lines in one file... (5 Replies)
Discussion started by: raptor25
5 Replies

6. Shell Programming and Scripting

awk append fileA.txt to growing file B.txt

This is appending a column. My question is fairly simple. I have a program generating data in a form like so: 1 20 2 22 3 23 4 12 5 43 For ever iteration I'm generating this data. I have the basic idea with cut -f 2 fileA.txt | paste -d >> FileB.txt ???? I want FileB.txt to grow, and... (4 Replies)
Discussion started by: theawknewbie
4 Replies

7. Shell Programming and Scripting

Need to append the date | abcddate.txt to the first line of my txt file

I want to add/append the info in the following format to my.txt file. 20130702|abcd20130702.txt FN|SN|DOB I tried the below script but it throws me some exceptions. <#!/bin/sh dt = date '+%y%m%d'members; echo $dt+|+members+$dt; /usr/bin/awk -f BEGIN { FS="|"; OFS="|"; } { print... (6 Replies)
Discussion started by: harik1982
6 Replies

8. Shell Programming and Scripting

Desired output.txt for reading txt file using awk?

Dear all, I have a huge txt file (DATA.txt) with the following content . From this txt file, I want the following output using some shell script. Any help is greatly appreciated. Greetings, emily DATA.txt (snippet of the huge text file) 407202849... (2 Replies)
Discussion started by: emily
2 Replies

9. Shell Programming and Scripting

Help script shell find fichier

Hello, I am looking for a shell script that can 1- take as input a variable, like "server.cpu" 2- do a search for that variable in a directory that contains subdirectories. The search will start at the last subdirectory working up to the top level if I can not find the file 3-... (7 Replies)
Discussion started by: georg2014
7 Replies

10. Shell Programming and Scripting

Awk, sed, shell all words in INPUT.txt find in column1 of TABLE.txt and replce with column2 in

Hi dears i have text file like this: INPUT.txt 001_1_173 j nuh ]az 001_1_174 j ]esma. nuh ]/.xori . . . and have another text like this TABLE.txt j j nuh word1... (6 Replies)
Discussion started by: alii
6 Replies
DEBCONF-GETLANG(1)						      Debconf							DEBCONF-GETLANG(1)

NAME
       debconf-getlang - extract a language from a templates file

SYNOPSIS
	debconf-getlang lang master [translation]
	debconf-getlang --stats master translation [...]

DESCRIPTION
       Note: This utility is deprecated; you should switch to using the po-debconf package.

       This program helps make and manage translations of debconf templates.  There are basically three situations in which this program might be
       called:

       A translation is just being started.
	   You want to provide the translator with a file they can work on that has the English fields from your templates file, plus blank Field-
	   ll fields for the target language that they can fill in.

	   To do this, run the program with first parameter being the code for the language that is being translated to, and the second parameter
	   being the filename of the English templates file.

       A translation is well under way.
	   You have changed some English text, or added more items to your templates file, and you want to send the translators a file with the
	   English text plus their current translations (or you are the translator, and you want to generate such a file for your own use).

	   To accomplish this, run the program with the first parameter being the the code for the language that is being translated to, the
	   second parameter being the filename of the master English templates file, and the third parameter being the filename of the current
	   translated file.

	   When run this way, the program is smart enough to notice fuzzy translations. For example a fuzzy Description will be output as
	   Description-<lang>-fuzzy, and a new, blank Description-<lang> will be added.  Translators should remove the -fuzzy fields as they
	   correct the fuzzy translations.

       Checking the status of a translation
	   To check the status of a translation, use the --status flag, and pass the english template file as the first parameter, and all the
	   other translated templates after that. It will output statistics for each of them. For example:

	     debconf-getlang --stats debian/templates debian/templates.*

NOTE
       Note that the text in the generated templates may be word-wrapped by debconf.

SEE ALSO
       debconf-mergetemplate(1)

AUTHOR
       Joey Hess <joeyh@debian.org>

								    2012-09-10							DEBCONF-GETLANG(1)
All times are GMT -4. The time now is 01:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy