mirror of
https://asciireactor.com/otho/lammps-graphene.git
synced 2024-11-21 22:25:06 +00:00
8 lines
261 B
Bash
Executable File
8 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -type 'f' -exec chmod 600 \{\} \;
|
|
find . -type 'f' -name '*.sh' -exec chmod 700 \{\} \;
|
|
find . -type 'f' -name '*.sub' -exec chmod 700 \{\} \;
|
|
find . -type 'f' -path '*/bin/*' -exec chmod 700 \{\} \;
|
|
find . -type 'd' -exec chmod 700 \{\} \;
|