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

> ls | [entry.created for entry in $@ if entry.filename[0] == 'a'] | sort

You can do that type of thing with PowerShell quite easily. Something like this, maybe:

    Get-ChildItem | Where-Object Name.substring(0,1) -eq 'a' | Sort-Object CreationTime | Select-Object CreationTime


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

Search: