Sponsored Content
Top Forums Shell Programming and Scripting Modification of Summation Script Post 302693195 by Chubler_XL on Tuesday 28th of August 2012 11:07:55 PM
Old 08-29-2012
Sorry about the delay in my reply. Real life caught up with me for a bit there. I'll try an answer your questions in order:

Quote:
Originally Posted by ramneim
so this Begin statement -- it just basically separates the CSV into different columns, right? (will it also split it into different arguments as well?)
Spot on, the variable col_list is "22,23,1,2,4" and the split command separates each of the five values into the col array variable, so:
Code:
col[1]="22"
col[2]="23"
col[3]="1"
col[4]="2"
col[5]="4"

The titles array is just for the output headings the 1 split statement could be replaced with:
Code:
titles[1]="sales_date"
titles[2]="cust_id"
titles[3]="UPC"

Quote:
Originally Posted by ramneim
and also in these code below:will this take the first column of the second file and compare to $7, which i think is now.. only part of $3 (csv), right?

Code:
FILENAME != "-" {EXC[$1]; next}
        !($7 in EXC) {

This stores that first column in the 2nd file into an array named EXC. And only records in the first files where field #7 is not in the EXC array are processed.

Do you really need comma seperator in the 2nd file? if So you might need to do:

Code:
FILENAME != "-" {sub(/,.*$/,"");if(FNR>1)EXC[$0]; next}
        !($7 in EXC) {

Also, I see from your data files that the exclude field appears to be in field 4, not 7 (you might need !($4 in EXC) {)


Quote:
Originally Posted by ramneim
so in this added code, i'm not quite sure what it does? Smilie
This strings column values required from the input line together with pipes into val and directly together into key.

So if your col_list was "1,2,3,5,7,6" and the input line was "one,two,three,four,five,six,seven" then key ends up as "fivesevensix" and val ends up with "five|seven|six".

Quote:
Originally Posted by ramneim
for this added for loop in the last part of the code:
could you kindly enlighten me with this part?
Code:
for(i=2;i<cols;i++) printf "%s|", titles[i-1];

Prints the headings from the titles array for the additional fields you add to the csv (beyond the first 3).

To remove the heading line from the output replace if(NR!=1) { with if(FNR!=1) {

Last edited by Chubler_XL; 08-29-2012 at 12:26 AM..
This User Gave Thanks to Chubler_XL For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

help in script modification

i have the following perl script.but it searches for a given filename. i want to run the same script in my directoy which has subdirectories too and it has to display the file if sreach satisfies along with directory name. can anyone help me: perl script: my $FILE = $ARGV; for zf in... (4 Replies)
Discussion started by: a.suryakumar
4 Replies

2. Shell Programming and Scripting

Need a modification on this script

Hi All I have files contains rows which look like this: 2 20090721_16:58:47.173 JSUD2 JD1M1 20 IAM 966591835270 249918113182 b 3610 ACM b 3614 ACM b 3713 CPG b 3717 CPG f 5799 REL b 5815 RLC b 5817 RLC :COMMA: NCI=00,FCI=6101,CPC=0A,TMR=00,OFI=00,USI: :COMMB: BCI=1234: :RELCAUSE:10: ... (1 Reply)
Discussion started by: zanetti321
1 Replies

3. Shell Programming and Scripting

time modification in script

Hi All.. I have a file with a number of non-unique entries as below: 1243 01:42:29,567 --> 01:42:32,108 blah blah .... blah blah .. 1244 01:42:32,709 --> 01:42:34,921 blah blah .... 1245 01:42:35,214 --> 01:42:36,533 blah blah .... blah blah .. blah blah .... blah blah .. (4 Replies)
Discussion started by: UniRock
4 Replies

4. Shell Programming and Scripting

Help with Shell Script Modification

Hi all Iam very new to Shell Scripting, I have to modify a shell script looking at an existing one except that it will query against some table X in A database. Befor Spooling check if there are any reload files if there archive the files. The above scipt executes some abc.sql which will b a new... (2 Replies)
Discussion started by: Varunkv
2 Replies

5. Shell Programming and Scripting

Modification in shell script

Hello Team, I have prepared script which will check for listening message for ports 1199,1200 and 1201. I need modifcation in script in such a way that if port 1200 is not listening then it should message rmi port 1200 is not listening. Smap for port 1199 and 1201. kindly guide me to acheive... (4 Replies)
Discussion started by: coolguyamy
4 Replies

6. Shell Programming and Scripting

awk script modification

I want the below script to omit every chunk of data that contains a specific hostname. here's the scenario. i have a configuration file that contains the configuration of several hosts. a sample of this configuration file is this: define host { address ... (12 Replies)
Discussion started by: SkySmart
12 Replies

7. Shell Programming and Scripting

ksh script modification

Hi I have some list of files in a .dat i need to read them line by line and assing them to variables. For ex: list of files are some,some1 i need two variables g1 as some and g2 as some1. and then need to perform some operations on g1 and g2 for which i can get some o/p, i need to capture... (2 Replies)
Discussion started by: Ravindra Swan
2 Replies

8. Shell Programming and Scripting

Modification in script

Hi, I have below script, i want to monitor that that ntp server listed in setting is under sync or not. I wrote below script but it is not working properly. Here are problems, first it should server under sync if "*" shows and rest if shows "+" it means it is next server in waiting list.... (4 Replies)
Discussion started by: learnbash
4 Replies

9. Shell Programming and Scripting

awk script modification

can someone help me identify what i'm doing wrong here: awk -F'|' 'BEGIN{c=0} /./ && /./ { if ($3 < 2) { print ; c++ } END { print c":OK" } else if (($3 >= 2) && ($3 < 4)) { print ; c++ } END { print c":WARNING" } else if ($3 >= 4) { print ; c++ } END { print c":CRITICAL" } }'... (4 Replies)
Discussion started by: SkySmart
4 Replies

10. UNIX for Dummies Questions & Answers

Need small modification in script

Hi All, In the below script, I am calling one sql file test.sql If this file returns any data then I have to generate this file test_$RUN_DATE.FCNA If the sql files returns no data then I dont want to generate this file test_$RUN_DATE.FCNA. I tried one approach like: check the size of FCNA files... (1 Reply)
Discussion started by: praveenk768
1 Replies
All times are GMT -4. The time now is 04:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy