I\'m looking for a feature comparable to Python interactive shell\'s \"_\" variable. In PowerShell I want something like this:
> Get-Something # this returns
No there is not automatic variable like that.
You have to do:
$output = Get-Something $output $anObj = $output
to get the behaviour