It's a type of Planche
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

check_nfs.sh 201B

12345
  1. #!/usr/bin/env bash
  2. while read _ _ mount _; do
  3. read -t1 < <(stat -t "$mount") || echo "$(date) ${mount} timeout $(lsof -b 2>/dev/null | grep "${mount}")";
  4. done < <(mount -t nfs) >> /var/log/nfs.err