Shell Scripting @programming.dev starman @programming.dev 2y ago NuShell 0.88 www.nushell.sh Nushell 0.88.0 | Nushell
Hey Nu fans: is there some way to get compact ls output? Like a table of just names. No type, date, size, etc.
Sadly that's still not a compact output. The listing is still just as long as before scrolls right off the terminal
Hey Nu fans: is there some way to get compact ls output? Like a table of just names. No type, date, size, etc.
ls | select name
: will return tablels | get name
: will return listSource
Sadly that's still not a compact output. The listing is still just as long as before scrolls right off the terminal