mirror of https://github.com/fengyuhetao/shell.git
10 lines
114 B
Bash
10 lines
114 B
Bash
|
#!/bin/bash
|
||
|
#testing string equality
|
||
|
|
||
|
testuser=tiandi
|
||
|
|
||
|
if [ $USER = $testuser ]
|
||
|
then
|
||
|
echo "Welcome $testuser"
|
||
|
fi
|