shell/结构化命令/检查目录.sh

12 lines
169 B
Bash
Raw Normal View History

2016-05-13 21:42:54 +08:00
#!/bin/bash
# look before you leap
if [ -d $HOME ]
then
echo "Your home directory exists"
cd $HOME
ls -a
else
echo "There is a problem with your HOME direcotry"
fi