I tried to install with
winget install nushell --location c:\tools\
But it installer not support location.
And it installed in
C:\Users\User\AppData\Local\Programs\nu\bin\nu.exe
It work with Carapace tool.
It support work with sqlite.
open mydata.sqlite users | where age > 30 | sort-by name
and other features
CHCP 65001
def netstat-table [] {
netstat -ano
| decode cp866
| lines
| skip 4
| split column " " --collapse-empty Proto Local Foreign State PID
}
netstat-table | where State == "LISTENING"
seems like PowerShell
But pipelines is not strings how in POSIX-shell, is objects.
WBR, alex;