A system administrator needs to set the permissions for a shell script named `deploy.sh`. The requirements are that the owner can read, write, and execute it; members of the group can read and execute it; and all other users can only read it. Which of the following `chmod` commands will set these permissions correctly using octal notation?
-
A
chmod 644 deploy.sh
-
B
chmod 755 deploy.sh
-
C
chmod 754 deploy.sh
-
D
chmod 777 deploy.sh