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