From 1ec21e179d8cdcd295c69b7653deb9896f29b271 Mon Sep 17 00:00:00 2001 From: shin Date: Tue, 28 Mar 2000 17:46:02 +0000 Subject: Avoid using sed and awk in configure script. TODO: also replace other sed and awk usages. Submitted by: wollman --- etc/rc.network6 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'etc/rc.network6') diff --git a/etc/rc.network6 b/etc/rc.network6 index d4c5dd2..3f6cd89 100644 --- a/etc/rc.network6 +++ b/etc/rc.network6 @@ -259,10 +259,12 @@ network6_stf_setup() { gifconfig stf0 ${stf_interface_ipv4addr} 255.255.255.255 # assign IPv6 addr and interface route for 6to4 interface stf_prefixlen=$((16+${stf_interface_ipv4plen:-0})) - ipv4_in_hexformat=`echo ${stf_interface_ipv4addr} | \ - sed -e s/"\."/" "/g | \ - awk '{$5 = $1*256 + $2; $6 = $3*256 + $4; \ - printf "%x:%x\n", $5, $6}'` + OIFS="$IFS" + IFS=".$IFS" + set ${stf_interface_ipv4addr} + IFS="$OIFS" + ipv4_in_hexformat=`printf "%x:%x\n", \ + $(($1*256 + $2)) $(($3*256 + $4))` case ${stf_interface_ipv6_ifid} in [Aa][Uu][Tt][Oo] | '') laddr=`ifconfig stf0 inet6 | grep 'inet6 fe80:' \ -- cgit v1.1