RosettaCodeData/Task/Unix-ls/PowerShell/unix-ls.psh

6 lines
219 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
# Prints Name, Length, Mode, and LastWriteTime
Get-ChildItem | Sort-Object Name | Write-Output
# Prints only the name of each file in the directory
Get-ChildItem | Sort-Object Name | ForEach-Object Name | Write-Output