diff --git a/createlinks b/createlinks deleted file mode 100755 index a5534d2..0000000 --- a/createlinks +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -if [ $# -gt 0 ] ; then - if ! [ -e links/$1.so ] ; then - echo Creating link for $1 - ln -s ../SpiralSound/Plugins/$1/$1.so links/$1.so - fi -else - if ! [ -d links ] ; then - if [ -e links ] ; then - echo A file \"links\" alredy exists, can\'t create the directory - exit - fi - mkdir links - fi - xargs -n 1 $0 < SpiralSound/PluginList.txt -fi