function pshell-local{
  param(
    [Parameter(Mandatory)]
    [String] $instruction
  )
  
  $instruction | iex
  
}
