Skip to content

Instantly share code, notes, and snippets.

@mrLuisFer
Last active November 29, 2021 16:57
Show Gist options
  • Save mrLuisFer/a4dd8d8e2df4503a0f7ff834b44957cf to your computer and use it in GitHub Desktop.
Save mrLuisFer/a4dd8d8e2df4503a0f7ff834b44957cf to your computer and use it in GitHub Desktop.
Equivalent Linux Commands for Windows
# 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