8 lines
107 B
Bash
Executable File
8 lines
107 B
Bash
Executable File
#!/bin/sh
|
|
if [ -e /proc/net/rpc/nfs ]
|
|
then
|
|
echo '<<<app-nfs>>>'
|
|
cat /proc/net/rpc/nfs
|
|
echo
|
|
fi
|