human_readable_ls_powershell
Something like the following for listing just file sizes. Yes it is a bit sore on the eyes but it manages to get the job done. https://superuser.com/a/468790
ls | Select-Object Name, @{Name="KiloBytes";Expression={$_.Length / 1KB}}
human_readable_ls_powershell.txt · Last modified: 2025/04/29 13:36 by oso
