Functions/Other/Get-Shrug.ps1

Function Get-Shrug
{
    [cmdletbinding()]
    Param()
    Process
    {
        'v\_(_/v' | Set-Clipboard
        write-host "shruggie copied to clipboard" -ForegroundColor Yellow
    }
}