File Permissions

[Solved] File Permissions | Perl - Code Explorer | yomemimo.com
Question : File Permissions

Answered by : ben-kiboma

Symbolic	Numeric
notation	notation	English
----------	0000	no permissions
-rwx------	0700	read, write, & execute only for owner
-rwxrwx---	0770	read, write, & execute for owner and group
-rwxrwxrwx	0777	read, write, & execute for owner, group and others
---x--x--x	0111	execute
--w--w--w-	0222	write
--wx-wx-wx	0333	write & execute
-r--r--r--	0444	read
-r-xr-xr-x	0555	read & execute
-rw-rw-rw-	0666	read & write
-rwxr-----	0740	owner can read, write, & execute; group can only read; others have no permissions

Source : | Last Update : Thu, 01 Sep 22

Question : change permissions for specific file types linux

Answered by : tender-toucan-h90rpmg2odn7

find . -name "*.sh" -exec chmod +x {} \;

Source : | Last Update : Wed, 22 Jul 20

Answers related to file permissions

Code Explorer Popular Question For Perl