Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I mean you don't need to use the convenience aliases, or use even use it exactly that way. Here's it without any aliases:

Get-ChildItem -Recurse | ForEach-Object { $PSItem.Name.ToLower() }

This might be a better mix of both worlds:

gci -r | foreach { $PSItem.Name.ToLower() }



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: