Forked from gerrit-amagno/gist:07d75a94fca2b6683f3ecfe8f7c9071d
Last active
June 5, 2024 18:28
-
-
Save gerrited/cd24bbd295dbb8c6209993f77e4e9e0d to your computer and use it in GitHub Desktop.
create a short link with is.gd and copy it to the clipboard - powershell function for notepad $profile - add quotes for the url parameter when calling the function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function short { | |
param([string]$url) | |
$escapedUrl = [URI]::EscapeUriString($url) | |
$shorturl = curl "https://is.gd/create.php?format=simple&url=$escapedUrl" | |
Write-Output $shorturl | |
Set-Clipboard $shorturl | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment