8 lines
97 B
Bash
Executable File
8 lines
97 B
Bash
Executable File
#!/bin/bash
|
|
|
|
declare DIST=Hej
|
|
echo "Utan unset: $DIST"
|
|
unset DIST
|
|
echo "Med unset: $DIST"
|
|
exit 0
|