Change other permission

Report a typo

Imagine you have a project file called /tmp/program.py. Your task is to make this file executable for other users without overriding previous permissions. Use the chmod command and symbolic mode to do the task.

Sample Input 1:

-r--r--r--

Sample Output 1:

-r--r--r-x
Write a program in Shell
#!/usr/bin/env bash
solve() {
# add your solution here

}
___

Create a free account to access the full topic