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

18 lines
371 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"`"
test -d "$mydir" && cd "$mydir/../../"
# Get all lua file's names
luafiles=$(mucro '.lua'$ -r . -b)
sed -i 's/[ \t]*$//' $luafiles
# Done
echo "Done"
#EOF