linux-tutorial/codes/shell/示例脚本/逻辑控制/字符串比较.sh
2019-05-10 11:17:57 +08:00

10 lines
114 B
Bash

#!/bin/bash
#testing string equality
testuser=tiandi
if [ $USER = $testuser ]
then
echo "Welcome $testuser"
fi