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

10 lines
114 B
Bash

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