You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
470B

  1. #!/bin/bash
  2. if [ $# -gt 0 ] ; then
  3. if ! [ -e links/$1.so ] ; then
  4. echo Creating link for $1
  5. ln -s ../SpiralSound/Plugins/$1/$1.so links/$1.so
  6. fi
  7. else
  8. if ! [ -d links ] ; then
  9. if [ -e links ] ; then
  10. echo A file \"links\" alredy exists, can\'t create the directory
  11. exit
  12. fi
  13. mkdir links
  14. fi
  15. xargs -n 1 $0 < SpiralSound/PluginList.txt
  16. ./spiralsynthmodular --PluginPath `pwd`/links/
  17. fi