Search Results

Search: Posts Made By: venky338
919
Posted By Don Cragun
Here is the script with comments: awk ' #...
Here is the script with comments:
awk ' # Start awk script...
BEGIN { FS = OFS = "|" }# Before reading any lines from the input file, set the
# input file field separator (FS) and the output...
919
Posted By Don Cragun
It is always a good idea to tell us what...
It is always a good idea to tell us what operating system and shell you're using when you start a thread like this.

The following is untested, but should do what you want (including copying the...
7,618
Posted By Don Cragun
Perhaps something like: awk ' function...
Perhaps something like:
awk '
function printlast() {
if(last)
print last, count, appr
count = 0
}
BEGIN { FS = OFS = ","
}
FNR == 1 {
print
next
}
last != $1 OFS $2 OFS $3 OFS $4 {...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 07:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy