zlacker

[return to "The Case for Nushell (2023)"]
1. UltraS+ww[view] [source] 2026-01-07 18:14:06
>>raveni+(OP)
If you haven't tried PowerShell I strongly recommend you do. It is really well designed and the way objects are piped between commands is brilliant and very powerful. Combined with property filters you can do SQL like queries. The ConvertTo-JSON lets you export the output of any command to JSON which is amazingly useful. As an example you can dump the entire Active Directory (Assuming you have permissions) by

Get-ADObject -Filter * -Properties * | ConvertTo-JSON > ADObjects.json

And you have access to ALL of the .NET library.

◧◩
2. haolez+zz[view] [source] 2026-01-07 18:25:30
>>UltraS+ww
Until you have to quote a string that has ampersands in it :)
[go to top]