Raveen Kumar

Cut

Cut from 25th column

https://superuser.com/questions/316785/is-there-a-diff-utility-that-allows-you-to-exclude-columns

cut -c25- file.txt

Cut fields

echo "1:2:3" | cut -d ":" -f 1

1

#Cut #Linux #Command-Line