Tagged Questions

`nawk` is a pattern scanning and processing language.

learn more… | top users | synonyms

2
votes
3answers
112 views

Is Awk and multiple file processing possible?

I need to process two file contents. I was wondering if we can pull it off using a single nawk statement. File A contents: AAAAAAAAAAAA 1 BBBBBBBBBBBB 2 CCCCCCCCCCCC 3 File B contents: ...
2
votes
2answers
492 views

alternative to tail -F

I am monitoring a log file by doing "TAIL -n -0 -F filename". But this is taking up a lof of CPU as there are many messages being written to the logfile. Is there a way, I can open a file and read ...
2
votes
2answers
332 views

Solaris awk Troubles

I'm writing a shell script and I need to strip FIND ME out of something like this: * *[**FIND ME**](find me)*
 and assign it to an array. I had the code working flawlessly .. until I ...
2
votes
1answer
626 views

Script with nawk doesn't print output to screen

I came across a nice one-liner to search for text and print out the results with a given number of trailing and following lines. I'm trying to create a script out of this. So far this is what I have: ...
1
vote
2answers
27 views

Shell scripting - how to get all files with a common name, and order those files

So I'm learning how powerful shell scripting is and love it, but am having a really hard time with this... I have a bunch of files named as: checkin.10 checkin.11 checkin.12 The number after the . ...
1
vote
2answers
67 views

How to redirect records to different output files based on a value in one of the columns in a file using nawk/awk?

How to redirect records to different output files based on a value in one of the columns in a file using nawk/awk?.. chethan RA Ramesh RA Sachin RA Gundaa DI dravid DI Suresh SE So I want to ...
1
vote
2answers
40 views

Array size in nawk

I am reading Introduction to Arrays for nawk It says: Arrays in awk superficially resemble arrays in other programming languages; but there are fundamental differences. In awk, you don't need ...
1
vote
3answers
79 views

accessing outer shell variables inside nawk in ksh

I am trying to access a shell variable inside a piped nawk. I have never done this before and was wondering if its possible. Here is the command sbdadm list-lu contents: Found 2 LU(s) ...
1
vote
1answer
75 views

Regarding nawk and system command

I am working on Solaris and working on a script that turns on any disabled service . Here is the output file: disabled 7:22:05 svc:/network/bla-bla:default online Jun_14 ...
1
vote
5answers
86 views

Selecting surrounding lines around the missing sequence numbers [closed]

I have one file inside that file it is present as given below TEST_4002_sample11_1_20110531.TXT TEST_4002_sample11_2_20110531.TXT TEST_4002_sample11_4_20110531.TXT TEST_4002_sample11_5_20110531.TXT ...
1
vote
2answers
43 views

Trouble with nawk and OFS in BASH

I am working on a script to extract the processor set number followed by the processor ids that fall under that processor set in Solaris in bash shell: Here is the output I want to extract from: ...
1
vote
3answers
205 views

Adding a delimiter after each file processed within awk

I have multiple files where I am extracting text between two delimiters (START and END non-inclusive). After I process each file I want to output a delimiter indicating the file was processed, say ...
1
vote
4answers
131 views

Problem with replace command

I have some problem with replace command. Input file i have this {a[$1]=a[$1]FS$2}END{for(i in a) print i,a[i]} I want to replace with single quotes '{a[$1]=a[$1]FS$2}END{for(i in a) print ...
1
vote
1answer
139 views

exit out of an awk function

How do I exit out of an awk function? "exit" stops entire program?
1
vote
3answers
305 views

how can i print the column in text file to row wise using unix command?

I have file like this.. for eg: number,dac,amountdac,expdate,0 1111,1,0.000000,2010-07-21,0 1111,2,0.000000,2010-07-21,0 1111,3,0.000000,2010-07-21,0 1111,4,0.000000,2010-07-21,0 ...
1
vote
3answers
415 views

awk use comma(optional) followed by multiple blanks as FS

What I need to do is parse a string of the following form -option optionArgument, --alternativeNotation Some text, nothing of interest... I set the FS to BEGIN { FS = ",?\ +" } but it ...
0
votes
1answer
57 views

How to print specific column in row wise using unix?

I have one input file which is given below. Values,series,setupresultcode,nameofresultcode,resultcode 2,9184200,,serviceSetupResultempty,2001 11,9184200,0,successfulReleasedByService,2001 ...
0
votes
2answers
33 views

Missing header in awk output

input: position fst 1 0.6 2 0.8 3 0.9 4 0.3 5 1 This gives me a header: awk '{if ($2>=0.7) print $1}' input > output but this doesn't: awk '{if ($2<0.7) print $1}' input > output ...
0
votes
1answer
39 views

shell scripts - “nawk”

Hi i ve been trying to read records from a final_customer_total.txt which contains details like size of processed files. I used "nawk" command to read the final_customer_total.txt to calculate total ...
0
votes
4answers
56 views

How to get the lines from a file where a particular string is repeating more than once in each line?

I have a file like below (an example file). 10,Bob,elec,Bob,hero,, 20,Bob,mech,steve,juni,,,yumm 30,Bob,instr,Bob,sen 40,Bob,comps,alex,juni,syu,, 50,Bob,chem,Bob,Bob,seni I ...
0
votes
2answers
34 views

how do i match a space with two shell variables inside awk in just one match function

I have a command: ls -l | nawk -v d1=Sep -v d2=26 '{if(match($0,d1)) print $0}' -rw-rw-r-- 1 nobody nobody 12 Sep 26 11:36 file1 -rw-rw-r-- 1 nobody nobody 14 Sep 26 11:37 file2 ...
0
votes
1answer
62 views

Pass variable to nawk in bash?

I'm trying to pass a variable to nawk in a bash script, but it's not actually printing the $commentValue variable's contents. Everything works great, except the last part of the printf statement. ...
0
votes
3answers
116 views

UNIX shell script and escaping quotes for AWK script

I have a UNIX script that has nawk block inside it (This is just a part of the UNIX and NAWK script. It has many more logic and the below code should definitely be in nawk) This block that reads a ...
0
votes
2answers
74 views

Search for a number in each line of a string in ksh and nawk

The input file: vnic10 e1000g1 e1000g2 vnic10 blablabla888blablablabla999blabla Output needed:(Only the numbers in each line) 10 1000 1 1000 2 10 888 999 We can do this using sed and remembered ...
0
votes
3answers
361 views

UNIX:How to convert ip address to binary code

Is there is any Command to convert ip address in to binary form? Eg: 10.110.11.116 output: 00001010.01101110.00001011.01110100
-1
votes
4answers
98 views

I would like to have the difference between 2 files. Want to find specifically at what column the difference has occured using Unix Scripting

We are doing a data migration project migrating from Informix to Oracle. Now a requirement has come up to compare the data between Informix and oracle tables. So Table1 from Informix will be migrated ...
-1
votes
1answer
137 views

UNIX AWK escaping single quotes [closed]

Possible Duplicate: UNIX shell script and escaping quotes for AWK script I have a UNIX script that has nawk block inside it (This is just a part of the UNIX and NAWK script. It has many ...
-3
votes
0answers
62 views

Need to Encrypt the passwords in configuration file and decrypt while using them in Unix

Due to security policy, Database passwords in our system will change every 15 days. Issue is we are using these passwords in many of our Unix scripts to connect to database. So its practically not ...