Issues with AWK


 
Thread Tools Search this Thread
Operating Systems AIX Issues with AWK
# 8  
Old 05-06-2009
The hard way :

Code:
awk -v awkvar=$new_rec1_field 'NR>1{y=system(echo "$new_rec1_field");print $y}'  $file1 > combined


cheers,
Devaraj Takhellambam
# 9  
Old 05-06-2009
Supposing the variable $rec1_field contains the field numbers delimited by a space as follow: "3 5 4 6 7":

Code:
awk -v var="$rec1_field" 'BEGIN{n=split(var,a)} 
NR > 1 {
  for(i=1;i<=n;i++) {
    printf("%s%c",$a[i],i==n?"\n":" ")
  }
}' file


Last edited by Franklin52; 05-06-2009 at 12:58 PM.. Reason: Forgot to skip the first line in the code
# 10  
Old 05-06-2009
Quote:
Originally Posted by devtakh
The hard way :

Code:
awk -v awkvar=$new_rec1_field 'NR>1{y=system(echo "$new_rec1_field");print $y}'  $file1 > combined

cheers,
Devaraj Takhellambam
devtakh,

Have you tried your solution?
The system command returns the exit code of the echo command, not the content of the variable.
# 11  
Old 05-06-2009
Quote:
Originally Posted by Franklin52
devtakh,

Have you tried your solution?
The system command returns the exit code of the echo command, not the content of the variable.
You are right Franklin. This will return the exit code..
# 12  
Old 05-06-2009
Sorry guys. It was well past my bed time, so missed your replies.

I will give your suggestions a go and advise

Thanks very much for all your input.

Alan
# 13  
Old 05-07-2009
Guys

Thanks for your help.

The script Franklin52 supplied, worked like a charm.

Once again, thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Issues with executing awk

I am piping some output to awk and would like to print fields $1 $2 and $3 $4 only if they exist. Note the awk begins with awk '{print $NF " " since I want the last field printed first. (7 Replies)
Discussion started by: motdman
7 Replies

2. Shell Programming and Scripting

Issues in reading file using 'awk'

Dear all, I am using following function of some script to assign variable "JobNo" some value form file $SAMPLE"_status.log" ( generated using the red color command ) crab ntuplize_crab -status -c $SAMPLE >& $SAMPLE"_status.log" & echo $SAMPLE"_status.log" "=====" jobNo=$(awk... (10 Replies)
Discussion started by: emily
10 Replies

3. Shell Programming and Scripting

Issues with awk and tcsh

Hello experts, I have two files which I'm uploading. One is an awk script and other file acts as an input to the script via positional parameter. awk -f intlmenu.awk jobsq.txt This run fine in C shell on SCO OpenServer Release 5.0.7. When I run it on Solaris 10 ( tcsh shell ) I get... (2 Replies)
Discussion started by: maverick_here
2 Replies

4. Shell Programming and Scripting

Awk OFS issues

Hi, Could anyone tell me what Im doing wrong here any help will be much appreciated #!/bin/bash ls -ltr /export/home/tjmoore > /export/home/tjmoore/log100 awk -F " " /export/home/tjmoore/log100 'BEGIN {OFS="\t";} {print $1,$2,$3,$4,$5, $6,$7,$8,$9;}' > /export/home/tjmoore/log1001 I... (9 Replies)
Discussion started by: 02JayJay02
9 Replies

5. Shell Programming and Scripting

Awk OFS issues

Hi Im trying to tidy up the output of a who command when it writes to a log, everything I've tried doesnt seem to work though, any help would be massively appreciated. Im using the awk command to set the OFS as tab. #!/bin/bash who >> /export/home/tjmoore/logusers awk -F 'BEGIN... (3 Replies)
Discussion started by: 02JayJay02
3 Replies

6. Shell Programming and Scripting

Issues running an awk script

Hi, I have an awk script(test.awk) as below which I am trying to execute through the following command and I am getting error as follows. Request your valid inputs on where I am going wrong. Thanks. :/usr/chandra# awk -f test.awk input.txt syntax error The source line is 1. The error... (18 Replies)
Discussion started by: adept
18 Replies

7. UNIX for Dummies Questions & Answers

awk: issues for writing a script

%%%%% (7 Replies)
Discussion started by: lucasvs
7 Replies

8. Shell Programming and Scripting

Filtering Issues Using sed and awk

Hi, I am currently using the sed and awk commands to filter a file that has multiple sets of data in different columns. An example of part of the file i am filtering is as follows; Sat Oct 2 07:42:45 2010 01:33:46 R1_CAR_12.34 Sun Oct 3 13:09:53 2010 00:02:34 R2_BUS_56.78 Sun... (4 Replies)
Discussion started by: crunchie
4 Replies

9. UNIX for Dummies Questions & Answers

Awk Performance Issues

Hi All, I'm facing an issue in my awk script. The script is processing a large text file having the details of a number of persons, each person's details being written from 100 to 250 tags as given below: 100 START| 101klklk| ... 245 opr| 246 55| 250 END| 100 START| ... 245 pp| 246... (4 Replies)
Discussion started by: pgp_acc1
4 Replies

10. Shell Programming and Scripting

Awk output issues.

I have the follwing code: awk '{print $1}' HITS #Searches HITS file column one. Column one is filenames awk '{print $2}' HITS | sort -n | wc -l #Searches HITS file and sorts numerically and outputs line count. column 2 is IP addresses awk... (4 Replies)
Discussion started by: amatuer_lee_3
4 Replies
Login or Register to Ask a Question