Skip to content

Instantly share code, notes, and snippets.

@Xainey
Created February 3, 2017 15:57
Show Gist options
  • Save Xainey/a8793a62dcb6d613bf0482ee6deec36f to your computer and use it in GitHub Desktop.
Save Xainey/a8793a62dcb6d613bf0482ee6deec36f to your computer and use it in GitHub Desktop.
Powershell export command
function export
{
try
{
$s = ($args[0]).Split("=", 2)
if($s.Count -ne 2)
{
throw "more finesse please."
}
New-Item -Name $s[0] -Value $s[1] -ItemType Variable -Path Env: -Force | Out-Null
}
catch [Exception]
{
"Whoops, " + $_
}
}
export FLASK_APP=example
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment