I am using bash scripting in Linux. I have a variable that looks like this:
a="1-1-1 1-1-2 1-1-3 1-1-4"
I want to separate columns with values equal to or greater than 1-1-3 using AWK.
My output should be:
1-1-3 1-1-4
Can someone help me with this?
a="2-1-1 1-1-2 1-1-3 1-1-4"?