#Day3 of #90DaysofDevops challenge
"cat": To view what's written in a file
"chmod": Change the access permissions of files
"history": To check which all commands you have run till now
"rm": To remove a directory/files
To create a fruits.txt file and view the content
"vim" is used to create a file and "cat" to view the content
Add content in devops.txt (one in each line)- Apple, Mango, Banana, Cherry, Kiwi, Orange, Guava
To show only top three fruits from the file
"head" command is used to display the top lines of the file
To show only the bottom three fruits from the file
"tail" command is used to display the bottom line
To create another file colors.txt and view the content
Add content in colors.txt (one in each line) - Red, Pink, White, Black, Blue, Orange, Purple, Grey
To find the difference between fruits.txt and colors.txt file
"diff" command is used to find the difference between files
Thank you for reading! ๐
-Nidhi