1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-22 20:50:17 +02:00
server-nalc/other_things/scripts/Git/remove_whitespaces.sh

18 lines
379 B
Bash
Raw Normal View History

#!/bin/bash
# Script to remove whitespaces from our repository's lua files
# Script ßý LeMagnesium, 2015
# (Note: You need this : https://github.com/LeMagnesium/mucro )
# Go to repo root
mydir="`dirname "$0"`"
2016-05-13 20:33:12 +02:00
test -d "$mydir" && cd "$mydir/../../../"
# Get all lua file's names
2016-05-13 20:33:12 +02:00
luafiles=$(find -type f -name "*.lua")
sed -i 's/[ \t]*$//' $luafiles
# Done
echo "Done"
#EOF