19-04-2021



Sometimes, even the simplest tasks can be forgotten if not practiced and repeated. In this short tutorial, I am going to show you some basic command line commands in Microsoft Windows, and their equivalent commands in Apple Mac OS Terminal. This is by no means a complete reference to the available commands, just a short list of some common commands available to you on your operating system. In this post, I will about Windows Command Line (CMD) and Mac OS Terminal Navigation Commands.

Mac

Knowledge of CMD/Terminal commands may be needed for using command line interfaces (CLI) of applications where Graphical User Interface is missing, or when CLI provides a faster/easier way to perform a task. Let’s see some of the commands

The CMD/Terminal window

For

With a batch file, you save all the commands into one file, and just run the batch file, instead of your gazillion commands individually. I was facing the same situation in Mac OSX when I realised that I didn’t know how to create a batch file in Mac OSX. Turns out it’s pretty easy. Execute commands and run tools in Terminal on Mac. You can use the command-line environment interactively by typing a command and waiting for a result, or you can use the shell to compose scripts that run without direct interaction. I've searched the web, and I'm still unclear on how to run R from the Mac terminal. I have Rstudio and the standalone R app installed. I thought I could just type 'R' from the command line as I do with 'python', but that doesn't work. OP's question was how to run the script in the Finder. None of the Unix solutions above do this. The answer is to set the file's extension to.command, eg, script.command. Double-clicking it will start Terminal and execute the script. (Make sure permissions are set to be executable.). Use this method to obtain the MAC Address of your local computer as well as query remotely by computer name or IP Address. Hold down the “Windows Key” and press “R“. Type “CMD“, then press “Enter“. You can use one of the following commands.

To open the CMD window in Microsoft Windows you may follow several ways, one of them being choosing Run option from the start menu, typing “cmd” in run window, and clicking “enter”. This will open the CMD window in Microsoft Windows

CMD window

Here you will see the version of the Operating System, and the path to the home folder. The white sign in the picture points your current location in the disk. Home folder is the usual starting point when you open CMD window.

In Mac OS you will usually find the Terminal in Other programs folder. When you open the terminal, you will see the name of the current folder. If you want to know the full path to the current folder, you can type pwd and see the full path.

List files and folders

If you want to list files and folders in that directory use:

WINDOWSMAC OS
dirls

Here you see the list of directories in my home folder

Run
Listing files in a directory with dir command in Windows CMD

Move to directory

If you want to change your current directory to another directory, use:

WINDOWSMAC OS
cd “path to the folder”cd “path to the folder”

When you execute the command by pressing “enter” in your keyboard, if the path is correct, you will see that you current folder will change to the new path.

Get back to parent directory

If you want to go one directory up in the directory tree, execute:

WINDOWSMAC OS
cd..cd ..

and you will see your current directory will change to the parent directory. Please note that in windows two dots are connected to cd, and in MacOS there is a space between cd and dots.

Get to the root

Cmd

Wherever you are in the directory tree, you can move to the root directory by executing:

WINDOWSMAC OS
cdcd /

This will get you to the disk root of the directory tree.

Create a directory

Run

Creating a new directory is done using

WINDOWSMAC OS
mkdir MyFolder mkdir MyFolder

This will create directory MyFolder in your current directory.

Remove a directory

Removing a directory first requires the directory to be emptied from contents, and then be removed. Removal commands are:

WINDOWSMAC OS
rmdir MyFolderrm -r MyFolder

Rename a directory

To rename a directory execute:

WINDOWSMAC OS
rmdir mv oldName newName

Rename a file

To rename a file execute:

WINDOWSMAC OS
ren oldFileName newFileNamemv oldFileName newFileName

Delete a file

To delete a file exeute:

WINDOWSMAC OS
del filenamerm -Rf filename

Delete command does not ask for confirmation, so please be careful.

Check the Path

Some programs need to be added to the PATH in order to be accessible through command line interface. If you want to check your current path, you can execute the following command:

WINDOWSMAC OS
echo %path%echo “$PATH”

Run Command For Mac Os X

This will print current path variable and you can check if required programs are added to the path.
I hope this helps.