Warming up with Unix commands: Difference between revisions
Line 63: | Line 63: | ||
and you can inspect it by typing: | and you can inspect it by typing: | ||
<code>$cat filename</code> | <code>$cat filename</code> | ||
We will see later other ways to create and edit files using the editor named vi. |
Revision as of 13:51, 20 November 2020
Getting Stearted
In this lesson, you will learn some basic commands of the Unix operative system. The operating system (OS) is the system software that manages computer hardware, software resources, and provides common services for computer programs, i.e. allow the communication between hardware and software. In order to use a computer, you need an OS. At this moment you are using a Virtual Machine containing the Ubuntu OS, a Linux distribution, a Unix-like OS. The command used in Linux and Unix they are essentially the same.
If you open a terminal window a prompt will appear where you can type your command. A snapshot of the prompt is shown here below:
You can inspect your environment by typing the following commands:
$ whoami
# (my username)$ hostname [-A]
# (machine name)$ pwd
# (current directory)$ ls [-ltr]
# list files and dirs$ ps
# running processes$ top
# more on running procs$ date
# show date and time
Filesystem
As seen above, the command $pwd (present working directory) shows the directory you are presently working on. Now we want to see how to navigate to other directories. This is done by using the command $cd
(change directory) followed by a path.
If we want to move for instance to the folder LabQSM we need to provide its path. A path is the address of a file or a folder.
We can use an absolute path:
$cd /home/max/LabQSM
or a relative path:
$cd LabQSM
provided that you are already in /home/max. This avoids typing complete paths.
You can then navigate up on level by typing:
$cd ..
and you will be back to the HOME. You can also navigate to multiple directories as e.g.
$cd LabQSM/LAB_1
Finally the command
$cd
or $cd ~
navigate to the HOME directory independently to the present working directory.
Creating, removing, copying and moving files and directories
A way to create a new file is the following:
$cat > filename
- Enter the content e.g. your name
- Press 'ctrl + d' to return to command prompt.
a file named filename containing a text with your name has been created. You will find it in the list using the ls
command
and you can inspect it by typing:
$cat filename
We will see later other ways to create and edit files using the editor named vi.