scripts_grundkurs/Labb2/unsettest.sh

8 lines
97 B
Bash
Executable File

#!/bin/bash
declare DIST=Hej
echo "Utan unset: $DIST"
unset DIST
echo "Med unset: $DIST"
exit 0