mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-28 06:11:47 +02:00
Add script to CHMOD every file in the repository
- Added "chmod_all.sh" and chmod-ed everything
This commit is contained in:
14
other_things/scripts/chmod_all.sh
Executable file
14
other_things/scripts/chmod_all.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Script to chmod all files in the repository at 755
|
||||
# Script ßý LeMagnesium
|
||||
#
|
||||
|
||||
# Go to repo root
|
||||
mydir="`dirname "$0"`"
|
||||
test -d "$mydir" && cd "$mydir/../../"
|
||||
|
||||
# CHMOD TIME!
|
||||
chmod -R 755 .
|
||||
|
||||
#EOF
|
Reference in New Issue
Block a user