Börjat på labb 2

This commit is contained in:
2013-12-10 11:52:38 +01:00
parent 1398b01cc5
commit 606ec5f4cb
4 changed files with 25 additions and 0 deletions

7
Labb2/unsettest.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
declare DIST=Hej
echo "Utan unset: $DIST"
unset DIST
echo "Med unset: $DIST"
exit 0