Home > Software design >  What is the difference between windows and mac commands?
What is the difference between windows and mac commands?

Time:01-26

~cd and ~ls -la "databaseName " how to write these commands ind windows? (this commands is for terminal)

i cant find mac and windows command

CodePudding user response:

these commands come with linux and mac, for use the commands in win is necessary install one "terminal for win", one example is the git bash

https://git-scm.com/download/win

sorry for English

CodePudding user response:

Linux and Mac is based on UNIX which makes most terminal commands the same. Some are different based on terminal or OS.
Window is based on Windows NT kernel which is an entire different family tree. That's why their commands is nothing like Linux.

If you're going to use terminal a lot, consider using GitBash or install a Windows Subsystem for Linux for your machine. Therefore, you can stick with linux's command, which in my opinion is easier and less complicated than window's commands.

  • Related