Q: You have just completed a script that organizes files in a directory and want to share it with a colleague. However, you realize they may not have permission to execute it. Which command do you use to grant execute permissions to everyone for your script named "organize.sh"?
- chmod 755 organize.sh`
- `chmod +x organize.sh`
- `chmod 666 organize.sh`
- `chmod o+x organize.sh`
