2 # check_mount: tests a mount point to see if it is already mounted, and if
3 # it is not, mounts it.
5 echo This program needs a mount point as a parameter. If the mount point is not
6 echo already mounted, then the program will attempt to mount it.
10 if [ -z "$(mount | grep "$1")" ]; then