On Tue, Jun 30, 2009 at 4:47 PM, <perryh@xxxxxxxxxxxxxx> wrote: > "jorl17" <wineforum-user@xxxxxxxxxx> wrote: > >> cat /proc/mounts | grep gvfs-fuse-daemon > > It would be somewhat more efficient, and much more > in keeping with "the Unix/Linux way", to redirect > grep's input instead of piping the file through cat: > > grep gvfs-fuse-daemon < /proc/mounts If you're arguing semantics, you shouldn't use /proc/mounts, which is more of a Linuxism. Instead, use the mount command mount | grep gvfs-fuse-daemon -- -Austin