Log Browser > 2460.sh | |
Recent files:
|
File contains 39
lines and was last altered on Sep 8 13:00
Showing the last 20 lines of this file ( 500 lines )
} else {
split( $0,data, "|" );
c = 1;
for( x in data ) {
if ( show[c] == 1 ) {
printf( data[c] );
}
printf( "|" );
c = c + 1;
}
print "";
}
}' | \
sed 's/|$//' | \
sort | \
uniq | \
sed "s/[;']//g" \
> /tmp/2460.dat
exit 0
|