#Day3 #90DaysofDevOps
Hi guys, this is day 3 of learning new tools for DevOps. Learnt few more fundamental commands in Linux.
To view what's written in a file - cat <filename>
To change the access permissions of files - sudo chmod u+rwx
To check which commands you have run till now - history
To remove a directory/ Folder. - rmdir
To create a fruits.txt file and to view the content. - fruits.txt
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. -
To Show only bottom three fruits from the file.
To create another file Colors.txt and to view the content. - vim colors.txt
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. -
#90daysofDevOps #day3 #Linux