What are the Windows equivalents for Unix commands?
What are the Windows equivalents for Unix commands?
Many a times in our day to day work we come across UNIX commands which we need to use on Windows. Same happen to me, I was working on one of the issue and I had to dig around to find the Windows equivalent commands for UNIX commands. Following are some of the commands which you can run on Windows servers:
Windows Command | Unix Command |
net statistics server | uptime |
systeminfo | find "System Boot Time" | uptime |
find | grep |
ps | tasklist |
ls | dir |
useradd | net user <username> <password> /ADD |
passwd | net user <username> <newpassword> |
userdel | net user <username> /DELETE |
finger | finger |
sort | sort |
du | du (https://technet.microsoft.com/en-us/sysinternals/bb545046.aspx) |
sleep | timeout |
I will keep populating this table as and when I come across a new command..