Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 252 Bytes

PowerShell.md

File metadata and controls

15 lines (9 loc) · 252 Bytes

Powershell

Howto convert csv to JSON

    $items = import-csv .\items.csv | ConvertTo-Json > items.json

Count the numbers of lines in a C# codebase

    (gci -include *.cs,*.xaml -recurse | select-string .).Count