1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-06-28 06:11:47 +02:00

add some server side scripts and re-organize the script folder

This commit is contained in:
BUISSON-DEBON Quentin
2015-08-17 01:14:55 +02:00
parent 502a814dd3
commit caed822407
15 changed files with 273 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/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