3 lines
83 B
Bash
Executable file
3 lines
83 B
Bash
Executable file
#!/bin/sh
|
|
# Remove executable flag from files
|
|
find $@ -type f -exec chmod a-x {} +
|