OpenWrt_Luci_Lua/1_3.test_code/sh_test/sh_strcmp.sh
2015-08-30 16:36:32 +08:00

14 lines
169 B
Bash
Executable File

#!/bin/bash
#以下代码中(())可替换为[]
a="up"
if(($a=="down")); then
echo "if"
elif(($a=="up")); then
echo "else"
else
echo "helo"
echo $a
fi