linux-noob
New Member
Hello linux folks
I made a simple text file with these numbers:
1 0 0
1 2 3
5 7 9
3 2 1
0 0 7
I wrote a script to read each line of this file and if it finds a variation of that line to skip it.
for example, the variation of 1, 2 and 3 on line 2 is found on line 4. I want to skip line 4. Is this possible with bash? Thanks
I made a simple text file with these numbers:
1 0 0
1 2 3
5 7 9
3 2 1
0 0 7
I wrote a script to read each line of this file and if it finds a variation of that line to skip it.
for example, the variation of 1, 2 and 3 on line 2 is found on line 4. I want to skip line 4. Is this possible with bash? Thanks