Determine if a path is in an nfs mount


/ Published in: Bash
Save to your folder(s)

This is useful if you have some optional functionality being done which is quite slow on nfs. For example, I have a script that adds scm (svn/git/etc) info to my prompt, but I wouldn't want that when I'm in a repository on an nfs mount.


Copy this code and paste it in your HTML
  1. if [ "$(stat -f -c "%T" $path)" = "nfs" ]; then
  2. # $path is in an nfs mount
  3. fi

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.