Displaying a field completely


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Displaying a field completely
# 1  
Old 12-07-2011
Displaying a field completely

Version: AIX 6.1 (korn shell)

In the below output, the field with the heading 'Address' has some names like
HTML Code:
hwproc214-priv1.gnas.wrd.net
which are only partially displayed.

HTML Code:
$ netstat -i
Name  Mtu   Network     Address           Ipkts Ierrs    Opkts Oerrs  Coll
en2   1500  link#2      ba.f0.10.7e.23.12  2850803     0  1917922     0     0
en2   1500  172.20.207  hwproc214-priv1.  2850803     0  1917922     0     0
en2   1500  169.254     169.254.115.157   2850803     0  1917922     0     0
en5   1500  link#3      hwproc218-priv1.  2851261     0  1917876     0     0
.
.
.


To displayed the 'Adress' field (the fourth one) , i tried

HTML Code:
$ netstat -i| cut -d: -f4
But it just gave the same output as above. I want the 'Adress' field (fourth one) to be displayed completely. How can I do this?
# 2  
Old 12-07-2011
Have you tried:
Code:
netstat -i | awk '{print $4}'

# 3  
Old 12-07-2011
Start with:
Code:
netstat -in | awk '{print $4}' | grep -v "Address"

Then look up the full name of those which are IP addresses (not MAC addresses) in /etc/hosts or DNS according to where netstat finds the name on your computer.
This User Gave Thanks to methyl For This Post:
# 4  
Old 12-07-2011
Try this one..
Code:
 awk '{print $4}' test1.txt

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

11.2 not shutting down completely

I just installed this 11.2 ver and when I tell it to shutdown it takes for ever then just hangs with this just a little bit of that red line left to go, then it just sits there like forever until I get tired of looking at it then force a shutdown by holding my power button down until my laptop... (8 Replies)
Discussion started by: userx-bw
8 Replies

2. UNIX for Dummies Questions & Answers

Displaying field of NR, not the line #

Within AWK, how do you display a field of NR? Here's my code: awk '(NR>1) && (P1=$1-w)>=100000 {print "increase of" " " P1*.0000179," " "kW at" " " 'NR*60/431900' " " "minutes" "\n" "change from" " " 'NR-10($1)' " " "kW to" " " 'NR+70($1)' "\n"}{w=$1}' filename I can change NR and print... (3 Replies)
Discussion started by: markymarkg123
3 Replies

3. Shell Programming and Scripting

Displaying the first field if the second field matches the pattern using Perl

Hi, I am trying with the below Perl command to print the first field when the second field matches the given pattern: perl -lane 'open F, "< myfile"; for $i (<F>) {chomp $i; if ($F =~ /patt$/) {my $f = (split(" ", $i)); print "$f";}} close F' dummy_file I know I can achieve the same with the... (7 Replies)
Discussion started by: royalibrahim
7 Replies

4. What is on Your Mind?

And now for something completely the same

In honor of the anniversary of one of the best British shows (and memoriam of Graham Chapman)... npjOSLCR2hE 9ZlBUglE6Hc (1 Reply)
Discussion started by: pludi
1 Replies

5. UNIX for Dummies Questions & Answers

Completely new to UNIX

This is my first post here, I tried searching the forum and other sites as well - but I still couldn't figure out exactly what UNIX is. I mean like for C programming we Turbo C++ IDE, and in same way different platforms for other languages. What do we use for UNIX? I'm completely new to UNIX and... (2 Replies)
Discussion started by: j7x
2 Replies

6. Shell Programming and Scripting

Displaying lines of a file where the second field matches a pattern

Howdy. I know this is most likely possible using sed or awk or grep, most likely a combination of them together, but how would one go about running a grep like command on a file where you only try to match your pattern to the second field in a line, space delimited? Example: You are... (3 Replies)
Discussion started by: LordJezoX
3 Replies

7. UNIX for Dummies Questions & Answers

COMPLETELY new to UNIX

So I am ridiculously new to UNIX. The closest thing to it I use is Mac OS X. Recently I downloaded OpenDarwin 7.2.1 just to see what it was like. I popped it into Vmware, installation and boot work well, and I login. Now I am presented with a console. I'm generally okay with command line... (2 Replies)
Discussion started by: sinister
2 Replies

8. UNIX for Dummies Questions & Answers

Completely new to unix

Ive decided to take a trip over to unix and see how it is due to the perl compatabilities, What distro would you recommend? Im somewhat new to perl, and would like something with a "n00b-friendly" environment. Ive been running Linux boxes for some time now, and want to try a new os also. (3 Replies)
Discussion started by: idontdowindows
3 Replies

9. UNIX for Dummies Questions & Answers

Completely new...

Hi there, I am completely new to this forum but it say's it's for complete newbies too :) I have some questions: 1: I want to learn Linux and some basic Unix commands. Is it best to install a text version of Linux/Unix? (to get to know the commands, instead of a shell app) 2: Are there... (8 Replies)
Discussion started by: Mecallie
8 Replies
Login or Register to Ask a Question