priyanka yadavforExit Status ($?) in Shell Scriptlearning-ocean.hashnode.net·Apr 5, 2023File Permissions and Access Control Lists1.Create a simple file and do ls -ltr to see the details of the files. As a task, change the user permissions of the file and note the changes after ls -ltr ubuntu@ip-172-31-13-215:~/file_permissions$ vi new_file.txt ubuntu@ip-172-31-13-215:~/file_pe...Discuss·1 like·30 readsDevops
Manvi Soodformanvisood.hashnode.net·Apr 18, 2023Git & GitHub BasicsGit is the most advanced tool in the market for source code management (SCM). This tool is also known as a version control system that maintains a log of every change that is made in the code repository of the projects with efficiency ( i.e. who, whe...Discuss·1 likeGitHub
Aisiri HSforAisiri's blogaisirihs.hashnode.net·Apr 24, 2023File Permissions and Access Control Lists#day6 File Permissions File permissions play a very important role in Linux. They ensure that only authorized users and processes can access specific files and directories. Let's look into File Permissions in detail by taking the example. I have crea...Discuss·1 like#90daysofdevops
Aisiri HSforAisiri's blogaisirihs.hashnode.net·Apr 24, 2023File Permissions and Access Control Lists#day6 File Permissions File permissions play a very important role in Linux. They ensure that only authorized users and processes can access specific files and directories. Let's look into File Permissions in detail by taking the example. I have crea...Discuss·1 like#90daysofdevops
Priya ChakrabortyforPriya's blogpriyachakraborty.hashnode.net·Apr 22, 2023DAY 6 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to find the factorial of a given number: n=int(input('Enter the number : ')) fact=1 for i in range(1,n+1): fact=fact*i print(fact) Output : Enter the number : 6 720 This is a Python program to calculate the factorial o...DiscussDay6
Manvi Soodformanvisood.hashnode.net·Apr 18, 2023Git & GitHub BasicsGit is the most advanced tool in the market for source code management (SCM). This tool is also known as a version control system that maintains a log of every change that is made in the code repository of the projects with efficiency ( i.e. who, whe...Discuss·1 likeGitHub
priyanka yadavforExit Status ($?) in Shell Scriptlearning-ocean.hashnode.net·Apr 5, 2023File Permissions and Access Control Lists1.Create a simple file and do ls -ltr to see the details of the files. As a task, change the user permissions of the file and note the changes after ls -ltr ubuntu@ip-172-31-13-215:~/file_permissions$ vi new_file.txt ubuntu@ip-172-31-13-215:~/file_pe...Discuss·1 like·30 readsDevops
Ayshwarya KatheriaforAyshwarya.katheriaayshkatheria.hashnode.net·Apr 4, 2023Day 6 Task: File Permissions and Access Control ListsCreate a simple file and do ls -ltr to see the details of the files and Write an article about File Permissions based on your understanding from the notes. To check the type and permissions on the file, use the command ls with the below flags:- ls -l...DiscussDevops
Rohit KadolkarforRohit Kadolkar's blogrohitkadolkardevops.hashnode.net·Mar 24, 2023#Day6 #90DaysofDevOpsThe concept of Linux File permission and ownership is important in Linux. Today, we will be working on Linux permissions and ownership and will do tasks on both of them. Let us start with the Permissions. Create a simple file and do ls -ltr to see th...DiscussDevops