Date: Wed, 17 Aug 2005 20:12:16 +0000 From: jdyke <jdyke@azimainc.com> To: "Jorge Mario G. Mazo" <murcielako@yahoo.com> Cc: freebsd-questions@freebsd.org Subject: Re: how to know the file system type [programming] Message-ID: <43039A20.7030803@azimainc.com> In-Reply-To: <20050817195522.28381.qmail@web50101.mail.yahoo.com> References: <20050817195522.28381.qmail@web50101.mail.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Jorge Mario G. Mazo wrote:
> hi there
> I've been looking for a way to check the fs type
> I need to do something like this
>
> if NTFS do this
> if msdis do that
> if ufs2 do that
> if ext2 do this other stuff
not sure if this is what your looking for, but there are likely a million ways,
one being
in bash
$ fs_to_check=/dev/ad4s1g
$ fstype=`grep $fs_to_check /etc/fstab | awk '{ print $3 }'`
$ echo $fstype
ufs
$
could be similarly scripted
>
> thanks in advance
>
>
> =================================================================
> Either write things worth reading, Or do things worth the writing.
> -Benjamin Franklin
>
> __________________________________________________
> Correo Yahoo!
> Espacio para todos tus mensajes, antivirus y antispam ¡gratis!
> Regístrate ya - http://correo.espanol.yahoo.com/
> _______________________________________________
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?43039A20.7030803>
