我有个剧本:
#!/usr/bin/env bash
if [ ! "$UID" = 0 ]; then
if [ `type -P gksu` ]; then
SUDOAPP="gksu"
elif [ `type -P kdesu` ]; then
SUDOAPP="kdesu"
else
SUDOAPP="sudo"
fi
fi
if [ -n "$1" ]; then
if [ "$1" = "
我想拒绝对包含数据库详细信息的txt文件的访问,但是使用当前的方法,我发现即使是脚本也无法访问它们需要的详细信息。我将把这个设置从windows移动到linux,然后定期返回,所以我需要一个不脆弱的解决方案。
# Refuse direct access to all files
Order allow,deny
Allow from 127.0.0.1
Deny from all