ok... iam building a script and i want all my server ip address in one file and i want to extract it in row one by one.
i try ......
awk '{ print $1 ;}' myfileipaddress
the result......
192.168.0.1 192.168.0.2 192.168.0.3 192.168.0.3 etc...
i want the result to this
192.168.0.1 only or
192.168.0.3
iwant it by row not by column
