Quote:
Originally Posted by Iz3k34l
Here is a sample code
grep '903' -i user.txt | tail -2 | awk '{print $2}' | sed 's/B//g'
the input file has data as such
903-xxx-xxxxB
903-xxx-xxxxB
It is a dialer file i want to remove the "B"
any help thanks
|
you will not get results from the "awk" part, because $2 will be nothing. the field separator is wrong. You can also do it all in awk
Code:
awk '/^903/{gsub(/B$/,"")}{print}' user.txt