SyntaxFix
Write A Post
Hire A Developer
Questions
You can have awk do it all without using cut:
awk
cut
awk '{print substr($7,index($7,"=")+1)}' inputfile
You could use split() instead of substr(index()).
split()
substr(index())