memes/generate-max.ps1
2022-09-26 19:57:17 -03:00

5 lines
224 B
PowerShell

$count = Get-ChildItem -Path ./* -Include *.mp4 | Measure-Object | Select-Object -ExpandProperty Count
$declaration = "const MAX = "
$string = $declaration + $count
$string | Out-File -Encoding utf8 -FilePath ".\max.js"