8 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| # Thanks to the people at: 
 | |
| # http://www.linuxquestions.org/questions/programming-9/using-grep-and-awk-to-get-ip-address-627626/
 | |
| 
 | |
| echo $(expr "`ifconfig $1`" : '.*inet addr:\([^ ]*\).*')
 | |
| 
 | |
| #ifconfig ${EXTIF}| awk -F ' *|:' '/inet addr/{print $4}'
 |