Sponsored Content
Full Discussion: Final Output
Top Forums Shell Programming and Scripting Final Output Post 302078295 by Doc_RuNNeR on Thursday 29th of June 2006 10:51:32 AM
Old 06-29-2006
If you want a shell script you can use that
Code:
#! /bin/bash
espacios=IFS
IFS="
"
for i in `cat $1`
do
  name=`echo $i | cut -d" " -f1`
  echo $i > aux
  cat $2 | grep "^$name " | cut -d" " -f2 >> aux
  cat aux | tr -s "\n" " " >> aux2
  echo >> aux2
done
IFS=$espacios
unset espacios
rm aux

It generates a file whose name is aux2 that has the information that you want.

Bye
 

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Modifying the final output file

Hey all, I am haivng n number of files all of them are of the same format but different details. i.e File1 is having the folloeing details: "Account1",123 "Account2",10 "Account3",12355 "Accountn",555 File2 is having the folloeing details: "Account1",1234 "Account2",100... (5 Replies)
Discussion started by: charbel
5 Replies

2. UNIX for Dummies Questions & Answers

LINUX - How to remove the final delimiter from a command output

Hi All, I am trying to list the various dates for which the file is available in a directory using the command below, (& subsequently pass the command output to a loop) Command : ls dir|grep 'filename'|cut -d '_' -f1|cut -c1-8|tr '\n' ',' However, it is giving me an extra comma... (6 Replies)
Discussion started by: dsfreddie
6 Replies

3. Shell Programming and Scripting

Addition to Bash shell script that emails final output as attachement?

Greetings. I have a nice bash shell script that runs a multi-step analysis well. I already have the SGE options set up to email me the progress of the run (started, completed, aborted), but a final step would be to code the shell script to email the final output (a .txt file) to the same email... (6 Replies)
Discussion started by: Twinklefingers
6 Replies

4. UNIX for Beginners Questions & Answers

Separating output after final character

I'm trying to write a script that will email the contents of my Application folder to me. cd /Applications ListApps=$(ls) echo $ListApps | mail -s "Application Check" myself@myemail.com This sends it in a paragraphed block i.e: Adobe Acrobat Reader.app App Store.app Atom.app... (4 Replies)
Discussion started by: $shell_Learner
4 Replies
staux(3)						     Library Functions Manual							  staux(3)

Name
       st_auxbtadd,  st_auxbtsize, st_auxisymadd, st_auxrndxadd, st_auxrndxadd, st_addtq, st_tqhigh_aux, st_shifttq, st_iaux_copyty, st_changeaux,
       st_changeauxrndx  - routines that provide scalar interfaces to auxiliaries

Syntax
       #include <syms.h>

       long st_auxbtadd(bt)
       long bt;

       long st_auxbtsize(iaux,width)
       long iaux;
       long width;

       long st_auxisymadd (isym)
       long isym;

       long st_auxrndxadd (rfd,index)
       long rfd;
       long index;

       long st_auxrndxadd (idn)
       long idn;

       void st_addtq (iaux,tq)
       long iaux;
       long tq;

       long st_tqhigh_aux(iaux)
       long iaux;

       void st_shifttq (iaux, tq)
       int iaux;
       int tq;

       long st_iaux_copyty (ifd, psym)
       long ifd;
       pSYMR psym;

       void st_changeaux (iaux, aux)
       long iaux;
       AUXU aux;

       void st_changeauxrndx (iaux, rfd, index)
       long iaux;
       long rfd;
       long index;

Description
       Auxiliary entries are unions with a fixed length of four bytes per entry.  Much information is packed within the auxiliaries.  Rather  than
       have the compiler front-ends handle each type of auxiliary entry directly, the following set of routines provide a high-level scalar inter-
       face to the auxiliaries:

       st_auxbtadd	   Adds a type information record (TIR) to the auxiliaries.  It sets the basic type (bt) to the  argument  and	all  other
			   fields to zero. The index to this auxiliary entry is returned.

       st_auxbtsize	   Sets the bit in the TIR, pointed to by the iaux argument.  This argument says the basic type is a bit field and adds an
			   auxiliary with its width in bits.

       st_auxisymadd	   Adds an index into the symbol table (or any other scalar) to the auxiliaries.  It sets the value to the  argument  that
			   will occupy all four bytes. The index to this auxiliary entry is returned.

       st_auxrndxadd	   Adds  a relative index, RNDXR, to the auxiliaries.  It sets the rfd and index to their respective arguments.  The index
			   to this auxiliary entry is returned.

       st_auxrndxadd_idn   Works the same as st_auxrndxadd except that RNDXR is referenced by an index into the dense number table.

       st_iaux_copyty	   Copies the type from the specified file (ifd) for the specified symbol into the auxiliary table for the  current  file.
			   It returns the index to the new aux.

       st_shifttq	   Shifts  in the specified type qualifier, tq (see sym.h), into the auxiliary entry TIR, which is specified by the `iaux'
			   index into the current file. The current type qualifiers shift up one tq so that the first tq (tq0) is free for the new
			   entry.

       st_addtq 	   Adds a type qualifier in the highest or most significant non-tqNil type qualifier.

       st_tqhigh_iaux	   Returns the most significant type qualifier given an index into the files aux table.

       st_changeaux	   Changes the iauxth aux in the current file's auxiliary table to aux.

       st_changeauxrndx    Converts the relative index (RNDXR) auxiliary, which is specified by iaux, to the specified arguments.

See Also
       stfd(3)

								       RISC								  staux(3)
All times are GMT -4. The time now is 05:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy