Skip to content

Instantly share code, notes, and snippets.

View sharpninja's full-sized avatar

Payton Byrd sharpninja

  • 05:34 (UTC -05:00)
View GitHub Profile
@sharpninja
sharpninja / video-consolidator.ps1
Last active May 3, 2023 02:24
Moves all videos from a source folder to a destination folder.
#! pwsh
param (
[Parameter()]
[string[]]
$SourcePaths = @($PWD),
[Parameter()]
[string]
$DestinationPath = $null,
[Parameter()]