Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > b611ea73723a8287cce23d3124a6eeea > files > 324

howto-sgml-ko-2006-5mdv2010.0.noarch.rpm

#!/bin/bash
# unset.sh: º¯¼ö¸¦ ¾ð¼ÂÇϱâ.

variable=hello                       # ÃʱâÈ­.
echo "variable = $variable"

unset variable                       # ¾ð¼Â.
                                     # variable=   ¶ó°í ÇÏ´Â °Í°ú µ¿ÀÏ
echo "(unset) variable = $variable"  # $variable ´Â ³Î.

exit 0