So, what are the file permissions?

File permissions can be described as who, what, and which activities can be done to a file or directory.

  • who refers to users, groups, or others
  • what means to add, delete and set
  • which means read, write, and execute

Bash Script – File Permissions

In this article, we will discuss file permission in Bash Script

To understand the scenario let’s take an example. Let’s consider there is a system admin A for company XYZ he designs a script that is to be executed by a user at 8:00 PM daily to send a report. He designs the script but forgets to give permission to the user to execute the script. Whenever a user tries to execute a script, he gets the error You are not authorized to take this action so why did this happen?

In the above case, we see that the system admin created a script but he did not give permission to the user as he was unable to execute it so to go into depth about this let’s explain how can we set file permission and how to check them.

Solution:  Now for the above example the system admin only has to give or set the user file permission to execute so that he can execute that file

Similar Reads

So, what are the file permissions?

File permissions can be described as who, what, and which activities can be done to a file or directory....

Basic list views of file and their permissions

The command we use is ls -l to show us the list of files/directory in the current folder we are present. This screenshot is a common example to show permission (using normal centos7 )...

Manage file permissions

To manage file permissions, we have a command called chmod which we can use to change the permission of files and directories....

Script for File permission

We can explain the file permission by creating a simple script to execute and change the permission of the file after understanding file permissions....