linux split line by specific character

Splits the line in the file by comma and shows columns 3 to 10 grep file.txt | cut -d ',' -f 3-10

Comments

Popular posts from this blog

Parse XML to dynamic object in C#

C# Updating GUI from different thread