Search Results

Search: Posts Made By: </kida>
14,521
Posted By m.d.ludwig
There are many many ways you could to this. With...
There are many many ways you could to this. With grep, for instace:grep -v '^.........................T' inputfile(there should be 25 ".")

With awk, I'd:awk 'substr($0, 26, 1) != "T"' inputfileI...
43,181
Posted By vino
That change doesnt look like its at position 11....
That change doesnt look like its at position 11. It looks like position 5.

I couldnt resist a sed solution for that

sh-2.05b$ echo "456781 ~Y~12345" | sed -e 's#\(.\{5\}\)\(.*\)#\1~\2#g'...
Showing results 1 to 2 of 2

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