Day 12 : GIT CheatSheet
#devops
Search for a command to run...
Articles tagged with #linux
#devops
#devops#git

#devops#linux

#devops Three types of Linux Permission classes User group other Default permission is -rw-rw-r chmod 777 file.txt chmod 640 file.txt for the user can get access from the file called sudoers file cat /etc/sudoers root ALL = (ALL:ALL) ALL (ALL...

#devops All 90 directories within seconds using a simple command, creating 90 directories in one go as below: mkdir day{1..90} You have to do the same using Shell Script i.e using either Loops or command with start day and end day variables using ar...

#devops To add a user to the Linux system: useradd devops setting user password: passwd devops If we want to add a user by making a directory use the -m flag sudo useradd devops -m -d dirSet the user’s home directory to be dir.-s shellSet the ...
