CppPlugins/testplugins/install.sh

9 lines
176 B
Bash
Raw Normal View History

2020-02-21 04:10:23 +01:00
#!/bin/bash
old=$(pwd)
cd $(dirname $0)
folders=$(ls -F | grep "/")
for f in $folders; do
echo cp $f*.so ../testserver/plugins/
cp $f*.so ../testserver/plugins/
done
cd $old