PowerShell PowerShell function mostrar() { Param([Parameter(ValueFromPipeline)]$nombre) Write-Host $nombre } "hola" | mostrar 1234567 function mostrar(){ Param([Parameter(ValueFromPipeline)]$nombre) Write-Host $nombre} "hola" | mostrar