memes/generate-max.ps1

5 lines
231 B
PowerShell
Raw Normal View History

2022-09-26 19:57:17 -03:00
$count = Get-ChildItem -Path ./* -Include *.mp4 | Measure-Object | Select-Object -ExpandProperty Count
2023-03-09 16:16:49 -04:00
$declaration = "export const MAX = "
2022-09-26 19:57:17 -03:00
$string = $declaration + $count
$string | Out-File -Encoding utf8 -FilePath ".\max.js"