getcwd:无法访问父目录

时间:2016-09-22 04:51:56

标签: bash shell aix

我在AIX控制台上运行pwd命令时遇到错误

Server_SID:sidadm 8> pwd
`pwd`: The file access permissions do not allow the specified action

同样在同一服务器上运行脚本时,我看到以下错误:

  

job-working-directory:检索当前目录时出错:getcwd:无法访问父目录:文件访问权限不允许指定的操作。

段:

#!/bin/bash
case $choice in

        a)
    echo "current usage of the /audit FS"
        df -P /audit
        space=`df -gt /audit | awk '{print $5}' | grep % | grep -v Use | sort -n | tail -1 | cut -d "%" -f1 -`
        case $space in
            [1-6]*)
                echo "All is quiet.\n"
            ;;
            [7-8]*)
                echo "\nAudit is at $space % full."
            ;;
            9[0-8])
                echo "\nBetter hurry with moving the files...  Audit is at $space % full."
            ;;
            99)
                echo "\nI'm drowning here!  Audit is at $space %!"
            ;;
            *)
                echo " "
            ;;
        esac



echo "**********"
;;

 *)

    echo " have a great day!!"
;;

esac

但是,如果我从其他用户运行相同的脚本,那么我没有看到任何问题。有人能告诉我这里的问题是什么吗?

操作系统:AIX 7.1

0 个答案:

没有答案