c/shell · by starman@programming.dev · 2yNuShell 0.88 https://www.nushell.sh/blog/2023-12-12-nushell_0_88_0.html13 points · 5 comments · view on lemmy.world
5 Comments
Nundrum@yall.theatl.social · 3 pts · 2y
Hey Nu fans: is there some way to get compact ls output? Like a table of just names. No type, date, size, etc.
starman@programming.dev · 2 pts · 2y
ls | select name: will return tablels | get name: will return listSource
Nundrum@yall.theatl.social · 2 pts · 2y
Sadly that's still not a compact output. The listing is still just as long as before scrolls right off the terminal
starman@programming.dev · 2 pts · 2y
You can try changing table style to more compact one. https://www.nushell.sh/book/coloring_and_theming.html#table-borders
Nundrum@yall.theatl.social · 2 pts · 2y
Yes, that changes the borders. But it doesn't turn a column into a table. Compare
ls /procin both bash and nu. It's a simple kind of thing that I can't find a solution for in nu.