[QUOTE=hunterk;23453]If you’re already in a terminal in your Mac machine and are scp-ing ROMs over, you can delete them directly on your Mac just as well as you would in Lakka.
So, from the same place you were trying to copy from, type:
rm -rf roms/.*
This should get rid of all of them from your Mac, at least temporarily; it might recreate them at some point. However, you can tack that copying command onto the end of it to make sure it moves them before it even has a chance to remake them:
rm -rf roms/.* && scp -r roms/* [email protected]:roms/
FYI, putting ‘&&’ in between commands tells it to ‘do the first thing and as soon as it finishes successfully do the next thing’.[/QUOTE]
I will give this a try as soon as I get home, thank you very much for your help.