| [`kill`](/commands/docs/kill.md) | | | `Stop-Process`, `kill` | `kill` |
| [`last`](/commands/docs/last.md) | | `Last`, `LastOrDefault` | `Select-Object -Last` | `tail` |
| [`str stats`](/commands/docs/str_stats.md)<br />[`length`](/commands/docs/length.md)<br />[`str length`](/commands/docs/str_length.md) | `count` | `Count` | `Measure-Object`, `measure` | `wc` |
| [`lines`](/commands/docs/lines.md) | | | `File.ReadAllLines` | |
| [`ls`](/commands/docs/ls.md) | | | `Get-ChildItem`, `dir`, `ls` | `ls` |
| [`mkdir`](/commands/docs/mkdir.md) | | | `mkdir`, `md`, `New-Item -ItemType Directory` | `mkdir` |
| [`mv`](/commands/docs/mv.md) | | | `Move-Item`, `mv`, `move`, `mi` | `mv` |
| [`open`](/commands/docs/open.md) | | | `Get-Content`, `gc`, `cat`, `type` | `cat` |
| [`print`](/commands/docs/print.md) | `print`, `union all` | | `Write-Output`, `write` | `echo`, `print` |
| [`transpose`](/commands/docs/transpose.md) | `pivot` | | | |
| [`ps`](/commands/docs/ps.md) | | | `Get-Process`, `ps`, `gps` | `ps` |
| [`pwd`](/commands/docs/pwd.md) | | | `Get-Location`, `pwd` | `pwd` |
| [`range` (command)](/commands/docs/range.md) | `limit x offset y`, `rownumber` | `ElementAt` | `[x]`, indexing operator, `ElementAt` | |
| [`range` (type)](types_of_data.html#ranges) | | `Range` | `1..10`, `'a'..'f'` | |
| [`reduce`](/commands/docs/reduce.md) | | `Aggregate` | | |
| [`rename`](/commands/docs/rename.md) | | | `Rename-Item`, `ren`, `rni` | `mv` |
| [`rm`](/commands/docs/rm.md) | | | `Remove-Item`, `del`, `erase`, `rd`, `ri`, `rm`, `rmdir` | `rm` |