Cut and minimise the length
hi,
Need unix code to cut the following example. The third filed shuld have oly 10 characters in total
[Code]
file..
123|test|testing12345612123|break
123|test|testing12378912|break
123|test|testing12345613213122|break
[\Code]
ouput..
[Code]
123|test|testing123|break
123|test|testingbre|break
123|test|testingdes|break
[\Code]
Last edited by anshaa; 08-13-2012 at 05:55 AM.
|