Using command terminal

Using command terminal#

You will most likely have to use terminal at some point. You can start it by either opening a launcher and scrolling down on throught the file menu:

../../_images/launcher.png ../../_images/menu.png

Terminal is an application that allows user to use command-line interface (or shell) to interact with the operating system.

../../_images/terminal.png

Our jupyterhub containers are based on linux, so in the terminal you will get the most common CLI for linux – bash. To see what shell you are using type type the following command echo $SHELL. It literally means print out the value of environmental variable SHELL.

user@machine:~$ echo $SHELL
/bin/bash

Bash is both, language and a shell (like PowerShell in Windows), you can learn basics f.e. here.