歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> 關於Linux

使用腳本解決nfs故障後客戶端使用df命令無法退出的問題

使用read超時參數即可解決:

ex:

read -t5 DIR < <(df)
if [ -n "$DIR" ];then
        echo $DIR
else
        echo "read error"
fi

該方法出自:http://dbaspot.com/shell/404467-check-nfs-mount-script.html

 

Copyright © Linux教程網 All Rights Reserved