diff options
author | tmclaugh <tmclaugh@FreeBSD.org> | 2008-03-12 02:09:22 +0000 |
---|---|---|
committer | tmclaugh <tmclaugh@FreeBSD.org> | 2008-03-12 02:09:22 +0000 |
commit | 8e3cf42a46cb29b9e7655661af39b8706599e67d (patch) | |
tree | 02fe2ae425386fcd6a1c219623f2ca49db6143da /sbin/mount | |
parent | e45596c44c68adc16213c3e19cf30ac0a42dac52 (diff) | |
download | FreeBSD-src-8e3cf42a46cb29b9e7655661af39b8706599e67d.zip FreeBSD-src-8e3cf42a46cb29b9e7655661af39b8706599e67d.tar.gz |
- Update with a better example which shows that options specific to a
file system may be passed using -o.
Approved by: remko, rodrigc
Diffstat (limited to 'sbin/mount')
-rw-r--r-- | sbin/mount/mount.8 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index 9af8597..86b5145 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -28,7 +28,7 @@ .\" @(#)mount.8 8.8 (Berkeley) 6/16/94 .\" $FreeBSD$ .\" -.Dd March 10, 2008 +.Dd March 11, 2008 .Dt MOUNT 8 .Os .Sh NAME @@ -335,14 +335,14 @@ For example, the .Nm command: .Bd -literal -offset indent -mount -t unionfs -o below /sys $HOME/sys +mount -t cd9660 -o -e /dev/cd0 /cdrom .Ed .Pp causes .Nm to execute the equivalent of: .Bd -literal -offset indent -/sbin/mount_unionfs -o below /sys $HOME/sys +/sbin/mount_cd9660 -e /dev/cd0 /cdrom .Ed .Pp Additional options specific to file system types |