Articles in this series
Day 1 of 90DaysOfDevOps · What is DevOps? DevOps is a methodology in the software development and IT industry. Used as a set of practices and tools,...
Day 2 of 90DaysOfDevOps · listing command ls <options> <arguments> -> list all sub directories and file in present directory Examples: ls -l--> list the...
Day 3 of 90DaysOfDevOps · Create file touch <filename> -> this will create any kind of file Add content in file vi <filename> or vim <filename> -> after...
Day 3 of 90DaysOfDevOps · User management A user is an entity, in a Linux operating system, that can manipulate files and perform several other...
Day 5 of 90DaysOfDevOps · Before start learning linux shell scripting let's dive into following three concepts What is kernel? Kernel is core component...
Day 6 of 90DaysOfDevOps · Loops in Shell Script Let's create directories day1 to day90 #!/bin/bash read -p "directory name: " dirName read...