11 lines
126 B
Bash
Executable File
11 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Jack-Benny Persson
|
|
# LX13
|
|
|
|
declare DIST=Hej
|
|
echo "Utan unset: $DIST"
|
|
unset DIST
|
|
echo "Med unset: $DIST"
|
|
exit 0
|