1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-06-30 23:50:21 +02:00
server-nalc/other_things/scripts/Rights/chmod_all.sh
2015-08-17 01:14:55 +02:00

16 lines
259 B
Bash
Executable File

#!/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 .
echo "All files have been chmod-ed to mode 755."
#EOF