前端之家收集整理的这篇文章主要介绍了
Bash测试一个目录是否由给定的UID可写?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_
502_0@
我们可以测试目录是否可以通过当前进程的uid写入:
$ if [ -w $directory ] ; then echo 'Eureka!' ; fi
但任何人可以建议一种方法来测试一个目录是否可写的一些其他uid?
我的方案是,我管理一个MysqL服务器实例,我想要临时更改慢查询日志文件的位置。我可以通过执行一个MysqL命令SET GLOBAL slow_query_log_file =’$ new_log_filename’,然后禁用&启用查询日志记录以使MysqLd开始使用该文件。
但是我想让我的脚本检查MysqLd进程的uid有权创建新的日志文件。所以我想做一些像(伪码):
$ if [ -w-as-MysqL-uid `basename $new_log_filename` ] ; then echo 'Eureka!' ; fi
但是,这当然是一个想象的测试谓词。
澄清:我想要一个不依赖su的解决方案,因为我不能假设我的脚本的用户有su权限。
这里有一个长,迂回的检查方式。
USER=johndoe
DIR=/path/to/somewhere
# Use -L to get information about the target of a symlink,# not the link itself,as pointed out in the comments
INFO=( $(stat -L -c "%a %G %U" $DIR) )
PERM=${INFO[0]}
GROUP=${INFO[1]}
OWNER=${INFO[2]}
ACCESS=no
if [[ $PERM & 0002 != 0 ]]; then
# Everyone has write access
ACCESS=yes
elif [[ $PERM & 0020 != 0 ]]; then
# Some group has write access.
# Is user in that group?
gs=( $(groups $USER) )
for g in "${gs[@]}"; do
if [[ $GROUP == $g ]]; then
ACCESS=yes
break
fi
done
elif [[ $PERM & 0200 != 0 ]]; then
# The owner has write access.
# Does the user own the file?
[[ $USER == $OWNER ]] && ACCESS=yes
fi