Last active
November 29, 2021 16:57
-
-
Save mrLuisFer/a4dd8d8e2df4503a0f7ff834b44957cf to your computer and use it in GitHub Desktop.
Equivalent Linux Commands for Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create an empty file | |
Linux - touch file.js | |
Windows - fsutil file createnew file.js 0 | |
# Remove a file | |
Linux - rm ./file.js | |
Windows - rm .\file.js / del .\file.js | |
# List Directories | |
Linux - ls / la / l | |
Windows - ls / dir | |
# Clear Terminal | |
Linux - clear | |
Windows - cls / clear | |
# Leave Terminal | |
Linux - exit | |
Windows - exit | |
# To list directory recursively | |
Linux - ls -R | |
Windows - tree | |
# Move to different directories | |
Linux - cd | |
Windows - cd | |
# If you have more commands, write it down in the comments section and I'll add 🧵 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment