Skip to content

Instantly share code, notes, and snippets.

View futuremotiondev's full-sized avatar
:octocat:
Coding Zen

Jay futuremotiondev

:octocat:
Coding Zen
View GitHub Profile
function Convert-SVGCropWithInkscape {
[CmdletBinding()]
param (
[parameter( Mandatory, Position = 0, ValueFromPipeline, ValueFromPipelineByPropertyName )]
[ValidateScript({
if ($_ -notmatch '[\?\*]') {
$true
} else {
throw 'Wildcard characters *, ? are not acceptable with -LiteralPath'
}