Monitors tend to be more wide than tall. When there's hundreds of files in a folder, ls -l and ls -l | more will only show you me maybe 100 files at a time, due to the lack of vertical space on the screen. But my screen has enough horizontal space to have at least three columns of ls -l output (see here for an example of ls -l output on my screen).
All suggestions to change the number of columns of ls output, such as:
ls -C
ls | col
ls --width=2
ls | xargs -n
ls --tabsize=2
ls --format=vertical
seem not to improve my ls -l output.
I browsed all options given in man ls. Is there any way to get the ls -l output, but multiple columns of it rather than one? Even a two-column output would be so helpful!