Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > ea0f41a23dac82cdc55f8e46da014a55 > files > 332

howto-html-ko-9.1-0.5mdk.noarch.rpm

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

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

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

exit 0