mirror of
https://asciireactor.com/otho/lammps-graphene.git
synced 2024-11-22 04:15:05 +00:00
8 lines
261 B
Bash
8 lines
261 B
Bash
|
#!/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 \{\} \;
|