Shailene Woodley Remembers Almost Being in ‘Amazing Spider-Man 2’
-
Among the casualties the 'Amazing Spider-Man' faced, Woodley's turn as Mary
Jane as one of the more underdiscussed.
7 hours ago
My take on all things technical
cat filename | awk '{print $3}' | perl -ne '$ip = $1 if /^(\d+\.\d+\.\d+\.\d+).*$/; print "$ip\n"' | sort | uniq
or to grab dest addresses substitute the fifth element
cat filename | awk '{print $5}' | perl -ne '$ip = $1 if /^(\d+\.\d+\.\d+\.\d+).*$/; print "$ip\n"' | sort | uniq