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