linux-tutorial/codes/shell/示例脚本/逻辑控制/字符串比较.sh

10 lines
114 B
Bash
Raw Normal View History

2019-05-10 11:17:57 +08:00
#!/bin/bash
#testing string equality
testuser=tiandi
if [ $USER = $testuser ]
then
echo "Welcome $testuser"
fi