Why doesn't ls behave the same after exchanging the order of options -l and -f?
$ ls -l -f
0821131236.jpg 0823130821.jpg
$ ls -f -l
total 33176
-rw-rw-r-- 1 t t 364186 Jan 6 16:06 0821131236.jpg
-rw-rw-r-- 1 t t 170003 Jan 6 16:06 0823130821.jpg
What advice should I follow when running ls or other utilities/commands with several options?
-f -lsupersede the behavior