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

6 lines
268 B
PowerShell

$Output = [int] (Get-ChildItem -Exclude *.ps1, *.txt, *.html, *.js, *.css | Select-Object BaseName -Last 1 | Select-Object -ExpandProperty BaseName)
$Output++
$Output = $Output.ToString().PadLeft(5, '0') + ".mp4"
yt-dlp.exe $args[0] -o $Output
./generate-max.ps1