Let's learn Bash... (Absolutely for Begginers) Part 01


Bash Commands


List Commands : ls

Changed Directory: cd

Clear Page : clear

Exit: exit


FOLDER/DIRECTORY

Create Folder : mkdir                                   Remove Directory

eg: mkdir "01 Sample"          eg: rmdir 01\Sample/ (without Quatations)


FILE

Create File                                                         Remove File                       Edit File

touch "filename".extention                                rm "filename"                   nano Sample.dox

eg: touch Sample.txt            rm Sample.txt      (add content)

eg: open index.html (for html files)                                                 control+s                      

                                                  Yes

echo -e,-n [strings] # Print text to the terminal

grep [options]pattern[file] # Print lines matching a pattern

man [keyword] #Find command in your manual


Learning Resources Udemy ... Go for it..


No comments:

Post a Comment

Let's learn Bash... (Absolutely for Begginers) Part 01

Bash Commands "Bash" What is this bash?  Well, It is a bit different name though, if we want to work with Linux, we have to learn ...