Just mentioning that, assuming the trailing tabs are useless (I guess they are), your can replace
awk < IPv4.txt '{ print $2"\t"}' -
with
cut -f 2 IPv4.txt

That will make no difference, except that if anybody (including yourself) gets back to the command, (s)he will more easily understand it is simply selecting the second column.

Reply via email to