pwd
print working directory - shows the current directory
cd
change directory
ls
shows the list of the directory
reading files
cat web.log20201002
searching directories/files
| at the end of the comand
grep ‘text’
text editor
nano php.ini
sudo
superuser keyword
checking last lines of the file (for reading logs)
tail -f web.log.20201002
history
searching hsitory (| grep can be a modifier)
What does “/” , “./”, “../” represent while giving path?
/ is the root of the current drive;
./ is the current directory;
../ is the parent of the current directory.