Powershell command to show number of @GoHugoIO markdown per year of publication
select-string ‘publishdate: ' *.md | select-object @{L=‘year’;E={$_.line.substring(14,4)}} | Group-Object -property year
Powershell command to show number of @GoHugoIO markdown per year of publication
select-string ‘publishdate: ' *.md | select-object @{L=‘year’;E={$_.line.substring(14,4)}} | Group-Object -property year