NuShell 0.88

https://www.nushell.sh/blog/2023-12-12-nushell_0_88_0.html

13 points · 5 comments · view on lemmy.world

5 Comments

Nundrum@yall.theatl.social · 3 pts · 2y (4 replies)

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 (3 replies)
  • ls | select name: will return table
  • ls | get name: will return list

Source

Nundrum@yall.theatl.social · 2 pts · 2y (2 replies)

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 (1 reply)

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 /proc in both bash and nu. It's a simple kind of thing that I can't find a solution for in nu.