shell/结构化命令/字符串比较.sh

10 lines
114 B
Bash
Raw Normal View History

2016-05-13 21:42:54 +08:00
#!/bin/bash
#testing string equality
testuser=tiandi
if [ $USER = $testuser ]
then
echo "Welcome $testuser"
fi