Day 2 Task: Basics Linux command's
We'll discuss some basic Linux commands without wasting any time.
mkdir - make directory(folder)
ls - lists files and directories within a system
In the below Image we created a directory named hello using mkdir and to list available files/folders we used ls command
touch - The touch command allows you to create an empty file.
vim - The use of vim is to create a new file, edit an existing file, or just read a file. If we give command vim cloud.txt
Below is the output. On keyboard press "i" to add some inputs.
To Exit the editor with saving your written words. Press Esc . Then type :wq and press Enter
To Exit the editor without saving. Press Esc . Then type :q! and press Enter
cd - use cd command to get inside a folder
Example cd hello
Here we are inside hello folder.