1
0
Fork 0
SDEV-415-81/week-10/test.sh

6 lines
160 B
Bash
Executable File

#!/bin/bash
echo -n '$USER=' # -n option stops echo from breaking the line
echo "$USER"
echo "\$USER=$USER" # this does the same thing as the first two lines