Search Results

Search: Posts Made By: DNM_UKN
1,662
Posted By Scrutinizer
Try introducing an extra column 1, that contains...
Try introducing an extra column 1, that contains the number of words in column 3, then sorting on that column and then removing the extra column, for example:
awk -F', *' 'NR>1 && NF{print...
1,662
Posted By Scrutinizer
Hi, awk can do that. Try:awk '$4~/^[Cc]/'...
Hi,

awk can do that. Try:awk '$4~/^[Cc]/' t21bThe field separator here is comma-space so I would be inclined to use that:awk -F', *' '$3~/ [cC]/' t21bNote that these approaches only work if all...
Showing results 1 to 2 of 2

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