#devops-90daysofdevopschallenges
Read more stories on Hashnode
Articles with this tag
after creating a file and doing ls -ltr, it has -rw-r--r--. after doing chmod +777 test.txt, it has -rwxrwxrwx. The file permissions are given to a...
Day-5 Task: To write a shell script that will create directories up to N number. #!/bin/bash if [ "$#" -ne 3 ]; then echo "Please provide...
Shell scripting is used to automate tasks that may be time-consuming and is the process of creating and executing a sequence of commands in a shell...
cat {filename} - used to view what's written in a file. chmod {filename} - used to change the access permissions of files. history - to check which...