I discovered this change today while playing with a “modern” Linux install, and I’m unreasonably upset about it. https://unix.stackexchange.com/questions/258679/why-is-ls-suddenly-wrapping-items-with-spaces-in-single-quotes
Why is 'ls' suddenly wrapping items with spaces in single quotes?

I just noticed that on one of my machines (running Debian Sid) whenever I type ls any file name with spaces has single quotes surrounding it. I immediately checked my aliases, only to find them int...

Unix & Linux Stack Exchange
@siracusa is it only when outputting to the terminal? Or when you pipe it, too?
@cmaier I don’t know.
@siracusa @cmaier piping and scripts look to be “safe”:
$ touch ls\ test
$ ls ls\ test
'ls test'
$ ls ls\ test | cat
ls test
$ ls -N ls\ test
ls test