Skip to content

Instantly share code, notes, and snippets.

@corbob
Created January 12, 2019 05:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corbob/038d4f81a031f1dca5750082b82c7e05 to your computer and use it in GitHub Desktop.
Save corbob/038d4f81a031f1dca5750082b82c7e05 to your computer and use it in GitHub Desktop.
install the last searched choco package
function ci {
$lastCommand = Get-History -Count 1
$newCommand = $lastCommand.CommandLine.Replace('clist','cinst').Replace('choco list','choco install')
Invoke-Expression $newCommand
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment