Basic Unix commands
If you are a windows user and haven't installed Ubuntu in your windows machine
make sure you check out the guide on
how to install ubuntu CLI in your system without virtual machine.
Practice the basic commands of Linux/Unix.
1. Cal command
Syntax: cal [options] [month] [year]
Description: Cal displays a simple calendar.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tkanu025@hp:~$ cal | |
January 2021 | |
Su Mo Tu We Th Fr Sa | |
1 2 | |
3 4 5 6 7 8 9 | |
10 11 12 13 14 15 16 | |
17 18 19 20 21 22 23 | |
24 25 26 27 28 29 30 | |
31 | |
tkanu025@hp:~$ cal 01 2021 | |
January 2021 | |
Su Mo Tu We Th Fr Sa | |
1 2 | |
3 4 5 6 7 8 9 | |
10 11 12 13 14 15 16 | |
17 18 19 20 21 22 23 | |
24 25 26 27 28 29 30 | |
31 | |
tkanu025@hp:~$ |
Output
2. Clear command
Description: It clears the terminal screen.
- It clears your screen if this is possible, including its scroll back buffer.
- Clear ignores any command-line parameters that may be present.
Syntax: clear
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tkanu025@hp:~$ clear |
Output
3. pwd: Displays the path of the present working directory.
Syntax: pwd [options]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tkanu025@hp:~$ pwd | |
/home/tkanu025 | |
tkanu025@hp:~$ |
Output
4. cd command
Description:
- It is used to change the directory.
- Used to navigate through different directories using Command line interface.
- .. is used with cd to go back to the previous directory.
Syntax: cd [directory name]
cd ~
is used to go to the home directory.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tkanu025@hp:~$ pwd | |
/home/tkanu025 | |
tkanu025@hp:~$ cd ff-series | |
tkanu025@hp:~/ff-series$ pwd | |
/home/tkanu025/ff-series | |
tkanu025@hp:~/ff-series$ cd ff9 | |
tkanu025@hp:~/ff-series/ff9$ pwd | |
/home/tkanu025/ff-series/ff9 | |
tkanu025@hp:~/ff-series/ff9$ cd .. | |
tkanu025@hp:~/ff-series$ cd ~ | |
tkanu025@hp:~$ |
Output
5. Exit command
It is used to terminate a program or shell.
syntax : exit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tkanu025@hp:~$ exit |
It will close your terminal and no output will be there😅.
Comments
Btw how did you integrate this with github?
let me know If you want.