bigbluebutton-Github/bigbluebutton-client/transifex.sh
2014-08-28 14:09:35 -07:00

17 lines
496 B
Bash
Executable File

#!/bin/bash
for i in * ; do
if [ -d "$i" ]; then
# echo "processing $i"
if [ -f $i.properties ]; then
if [ "$1" == "-test" ]; then
echo "mv -f $i.properties $i/bbbResources.properties"
else
#echo "no"
mv -f $i.properties $i/bbbResources.properties
fi
fi
fi
done