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 "[EMAIL PROTECTED]"

_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to