This file contains hidden or 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
# Installing htop, vim and nginx | |
sudo apt install -y htop vim nginx | |
# Removing nginx | |
sudo apt remove -y nginx |
This file contains hidden or 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
# Making two folder at one go | |
mkdir hello one | |
# Navigating | |
cd hello | |
mkdir five | |
cd five | |
mkdir six | |
cd six | |
# Making txt file | |
touch c.txt |
This file contains hidden or 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
echo abc |