#!/bin/sh
#----------------------------------------------------------------------------
# /usr/bin/wget
# wrapper to call wget (in.wget) with the correct LC_ALL syntax
# based on LANG
#
# Creation   : 2013-03-14  holbru
# Last update: $Id: wget 33257 2013-03-14 22:29:11Z hbfl $
#----------------------------------------------------------------------------
LC_ALL="$(echo "${LANG}")" "/usr/bin/in.wget" "${@}"
