Filebot script runs perfect in putty, but not on mobile ssh.
Posted: 10 Jun 2015, 22:05
Hello,
I was hoping maybe someone else ran into this. My custom automation script runs perfect if I run in on putty, but if I use any mobile ssh client, e.g. JuiceSSH for Android, it hangs at auto detecting query from context. But if I try over and over it will eventually detect the query. This is the script--
and one similar one for tv shows
So the desired effect would be to have it complete successfully on JuiceSSH on Android the first time without having to try up to 8 times to get it to work. Again, if I run putty on my windows machine and run the same exact scripts, it completes with zero hang at auto detect query from context.
I was hoping maybe someone else ran into this. My custom automation script runs perfect if I run in on putty, but if I use any mobile ssh client, e.g. JuiceSSH for Android, it hangs at auto detecting query from context. But if I try over and over it will eventually detect the query. This is the script--
Code: Select all
filebot -rename -r /server/downloads --action keeplink --db themoviedb --format "/server/movies/{n} ({y})/{n} ({y})" -non-strict
mv /server/downloads/* /server/seeding
exit
Code: Select all
filebot -rename -r /server/downloads --action keeplink --format "/server/tv\ shows/{n}/Season {s.pad(2)}/{n} - {sxe} - {t}" -non-strict --db thetvdb
mv /server/downloads/* /server/seeding
exit