Text Processing
For Text processing orr data extraction on text files linux
has provided below shell commands to handle
1.cut
2.awk
3.sed
4.paste
cut -d "," -f 1 file.txt
cut -d "," -f 1 file.txt|sort
d= delimeter
f= number index
for multiple files 2,3 or 2-3
Comments
Post a Comment