MegaKeep
MegaKeep copied to clipboard
Linux version?
Do you think it would be possible to port this to GNU/Linux?
I'm sure it's possible, but it'd take some work. right now I'm kinda busy with other things so if anyone wants to give it a shot, feel free
On Linux it may be more practical to script the account testing functionality, TBH.
on linux (or anywhere else bash or busybox runs) it's very easy:
#!/bin/bash while read a b;do mega-login &>/dev/null $a $b && mega-logout &>/dev/null && echo refreshed $a || echo error $a done <<EOF email1 password1 email2 password2 email3 password3 email3 password3 EOF
:D