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

11 lines
118 B
Bash

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