thank you very much

Stephane CHAZELAS-3 wrote:
> 
> 2007-09-12, 10:00(-07), chitti:
>>
>> I need to seperate the UDP and TCP ports from the /etc/services files.
>> any pointers or help on scripting this in bash would be helpful
>> thanks
> 
> awk '
>   NF == 0 || $1 ~ /^#/ {next}
>   $2 ~ /\/tcp$/ {print > "services.tcp"; next}
>   $2 ~ /\/udp$/ {print > "services.udp"; next}
>   {print > "services.other"}' < /etc/services
> 
> 
> -- 
> Stéphane
> 
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/bash-scripting-help-tf4430729.html#a12660260
Sent from the Gnu - Bash mailing list archive at Nabble.com.



Reply via email to