mirror of https://github.com/fengyuhetao/shell.git
10 lines
173 B
Bash
10 lines
173 B
Bash
|
#!/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
|