shell/结构化命令/使用符合条件测试.sh

10 lines
173 B
Bash
Raw Normal View History

2016-05-13 21:42:54 +08:00
#!/bin/bash
#testing compound comparisons
if [ -d $HOME ] && [ -w $HOME/testing ]
then
echo "The file exists and you can write to it"
else
echo "I cannot write to it"
fi