View Single Post
Old 11-07-2017, 01:27 PM   #188
kytdkut
Human being with feelings
 
kytdkut's Avatar
 
Join Date: May 2017
Posts: 95
Default

Quote:
Originally Posted by nosucherror View Post
Hi osxmidi, is there a way to convert the vsts recursively? I organise my plugins into subfolders and am having to run the GTK app for each directory. I was looking into using 'find' in the terminal but without success.
I use find & GNU parallel

run this on vst folder root. cp -f is to overwrite preexistent .so files

Code:
find -name '*.dll' | parallel cp -f /path/to/linvst.so "{.}".so
kytdkut is offline   Reply With Quote