1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-19 03:00:22 +02:00
server-nalc/other_things/scripts/chmod_all.sh
LeMagnesium 7f216c621d Add script to CHMOD every file in the repository
- Added "chmod_all.sh" and chmod-ed everything
2015-06-15 20:12:17 +02:00

15 lines
210 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 .
#EOF