Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Fabaderheld/77fd15969302c65f35c407cdf6368113 to your computer and use it in GitHub Desktop.
Save Fabaderheld/77fd15969302c65f35c407cdf6368113 to your computer and use it in GitHub Desktop.
Generate .m3u frrom .cue files
Get-ChildItem | ForEach-Object { (Get-ChildItem $_.Fullname -Recurse | Where-Object { $_.Name -like "*.cue" } | Select-Object name).Name | Out-File "$($_.FullName)\$($_.Name).m3u" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment