Windows Commands
https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands
Compare coreutils/util-linux with Windows Commands
Common CLI tools
| Linux | Windows |
|---|---|
| forfiles | find |
| cat | type |
| which | where |
| rm | del |
| rmdir | rmdir /S |
Network related tools
| Linux | Windows |
|---|---|
| ifconfig | ipconfig |
| netstat | netstat |
| telnet | netstat |
| ping | ping |
find a file by pattern
Linux find . -name *.exe Windows forfiles /S /M *.exe /C "cmd /c echo @path"
ref: https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/forfiles
