df command in linux vs. Solaris

We run both linux and Solaris where I work. We have a shell script that gives hard disk information on Solaris drives. Part of it executes the following command:

df -l -t -k

I need to know the equivalent in Linux in order to rewrite this script. I belive the options are different for linux.

thanks.

-l, --local
limit listing to local filesystems

-t, --type=TYPE
limit listing to filesystems of type TYPE

-k like --block-size=1K

see the df man pages under a linux distro if you have them installed on your system. if not search google for linux man pages.

Found it on my own. -t in Solaris is for show totals, not type. I just removed the -t and the script worked perfectly under linux.