Search Results

Search: Posts Made By: sezhil80
1,658
Posted By sezhil80
Hi, Do you want the value 999999 to be...
Hi,

Do you want the value 999999 to be replaced with 1222222 and
777777 to be replaced with 2333333 ?
16,105
Posted By sezhil80
Siva
hi,

Try using nawk.
I faced similar problem which is sorted after using nawk.

nawk 'BEGIN {LINE =0} if( $NF == "2007" && $1 == "**" ) {LINE = $0}
END{printf("%20s\n",LINE)}'

hope this...
3,078
Posted By sezhil80
Hi Chrish, To list a specific line in a...
Hi Chrish,

To list a specific line in a file, you shall use these commands.

line number =5

awk 'NR == 5' <file name>
sed -n '5q' <file name>
sed -n '6q;5p' <file name>
head -5...
Showing results 1 to 3 of 3

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