🐚 Shell File Permissions
📝 Basics
ls -l
— View file permissions
chmod +x file
— Add execute permission
chmod -x file
— Remove execute permission
chmod 755 file
— Set specific permissions (rwxr-xr-x)
💻 Try Some Commands
ls -l chmod +x script.sh ls -l chmod 644 script.sh ls -l
▶️ Run Simulation
Output will appear here...