Force bash to respect newlines in command output
When I run `ls *` its returning entries delimited by a newline. However my shell is ignoring the newlines to condense the output. I would like each entry on a separate line.
**Currently:**
> ls *
a b c
**Ideally:**
> ls *
a
b
c