Skip to main content
deleted 8 characters in body
Source Link
user232326
user232326

It is simpler using awk:

$ awk '2==$1'"2."==$1{print $2}' hello

https://www.bob.ca/

Use any number you choose instead of the initial 2. to select other lines.

It is simpler using awk:

$ awk '2==$1{print $2}' hello

https://www.bob.ca/

Use any number you choose instead of the initial 2 to select other lines.

It is simpler using awk:

$ awk '"2."==$1{print $2}' hello

https://www.bob.ca/

Use any number you choose instead of 2. to select other lines.

Source Link
user232326
user232326

It is simpler using awk:

$ awk '2==$1{print $2}' hello

https://www.bob.ca/

Use any number you choose instead of the initial 2 to select other lines.