全部博文(6)
分类: 其他平台
2013-08-06 14:10:05
#! /bin/bash
filepath=/dev
while [ 1 ]
do
ls /dev/tty*
res=$?
set -x
#if [ -c $filepath/tty* ];then
if [ $res -eq 0 ];then
set +x
echo "the tty* exist"
break
else
echo "the tty* not exist...again..."
fi
done
~
这样做可以实现判断,但是为什么 用 #if [ -c $filepath/tty* ];不能判断呢?????? 真奇怪!