我想检查目录是否存在且是否具有访问权限;如果是,则执行任务。这是我写的代码,可能没有正确的语法。
你能帮我纠正一下吗?
dir_test=/data/abc/xyz
if (test -d $dir_test & test –x $dir_test -eq 0);
then
cd $dir_test
fi
我相信这也可以这样写。
dir_test=/data/abc/xyz
test -d $dir_test
if [ $? -eq 0 ];
then
test –x $dir_test
if [ $? -eq 0 ];
then
cd $dir_test
fi
fi
我们怎样才能更有效地写这个?
答案 0 :(得分:13)
编写原始test
解决方案的最佳方法是
if test -d "$dir_test" && test –x "$dir_test";
then
cd $dir_test
fi
虽然如果测试失败并且您不更改目录,您会怎么做?脚本的其余部分可能无法按预期工作。
您可以使用[
的{{1}}同义词缩短此内容:
test
或者您可以使用if [ -d "$dir_test" ] && [ -x "$dir_test" ]; then
提供的条件命令:
bash
最佳解决方案,因为如果测试成功,您将要更改目录,只需尝试它,如果失败则中止:
if [[ -d "$dir_test" && -x "$dir_test" ]]; then
答案 1 :(得分:1)
dir_test=/data/abc/xyz
if (test -d $dir_test & test –x $dir_test -eq 0); # This is wrong. The `-eq 0` part will result in `test: too many arguments`. The subshell (parens) is also unnecessary and expensive.
then
cd $dir_test
fi
cd
可以告诉您目录是否可访问。只是做
cd "$dir_test" || exit 1;
即使您决定先使用test
,出于某种原因,您仍应仍然检查cd
的退出状态,以免您遇到竞争条件。< / p>
答案 2 :(得分:0)
if [ -d $dir_test -a -x $dir_test ]
或者如果你有/ usr / bin / cd:
if [ /usr/bin/cd $dir_test ]