csh shebang query

What does the "-f" mean in following interpreter code

#!/bin/csh -f

Thank you

From man csh:

-f  The shell does not load any resource or startup files, or perform any command hashing, and thus starts faster
1 Like

Thanks!