测试文件权限
时间:2011-04-18 来源:孤独的猫
IFS=:
for dir in $PATH
do
echo $dir
if [ -w dir ]; then
echo -e "\t你有权限写$dir"
else
echo -e "\t你没有权限写$dir"
fi
if [ -o dir ]; then
echo -e "\t你拥有$dir"
else
echo -e "\t你不拥有$dir"
fi
done
相关阅读 更多 +