Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 642 Bytes

Readme.md

File metadata and controls

13 lines (11 loc) · 642 Bytes

Project Readme

#Running scripts with execution permission 1- Open the terminal 2- Navigate to the project directory using the command "cd /path/to/your_project" 3- Check the execution permissions using the command "ls -l" 4- If the script doesn't have permission, grant him permission using the command "chmod u+x script_name.sh" 5- Run the script using "./script_name"

#Running scripts without execution permission Without execution permission: 1- Navigate to the project directory using the command "cd /path/to/your_project/" 2- Run the script using the command "bash scriptname" or "python3 scriptname" depending on the interpreter.