PHP
·
发表于 5年以前
·
阅读量:8280
#!/bin/bash
#testing string equality
testuser=tiandi
if [ $USER = $testuser ]
then
echo "Welcome $testuser"
fi