little script to symlink plugins to $HOME for testruns

(cherry picked from commit 708922ebe27ae623635a87c41055b12fc4d8d958)

git-svn-id: svn://dyne.org/rastasoft/freej/branches/Goil/freej_91@1032 383723c8-4afa-0310-b8a8-b1afb83214fc
This commit is contained in:
mrgoil
2008-02-07 19:24:50 +00:00
committed by Christoph
parent 43c61f1230
commit 3c7475f0e4
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
# prepares for a test run
# symlink all plugins in ./quickplug
# and symlink ~/.freej/plugins
mkdir quickplug
cd quickplug
find ../filters -name '*.so' -exec ln -sf {} \;
find ../lib/frei0r -name '*.so' -exec ln -sf {} \;
rm -f $HOME/.freej/plugins
ln -sf `pwd` $HOME/.freej/plugins