Page 1 of 1

Problems with hyphens

Posted: 25 Jan 2013, 13:33
by Vippis
Hi,

I'm new to Filebot. I installed on my Synology DS112j NAS and want to use it for renaming my downloaded TV-shows and movies. I want to use the script renall to rename all my files to a desired format.

Currently I use this line in a SSH shell:

Code: Select all

filebot -script fn:renall /volume1/Serien -non-strict --format "{n} - {s00e00} - {t}" --db TheTVDB --lang de
I get this error message:

Code: Select all

"-" is not a valid option
What am I doing wrong? Please help!

Re: Problems with hyphens

Posted: 25 Jan 2013, 14:22
by rednoah
I guess MissileHuggers SPK is still broken then, doesn't pass arguments along correctly.

Here's my offical startup script:
http://filebot.sourceforge.net/forums/v ... =254#p2595

Re: Problems with hyphens

Posted: 25 Jan 2013, 16:16
by Vippis
rednoah wrote:I guess MissileHuggers SPK is still broken then, doesn't pass arguments along correctly.

Here's my offical startup script:
http://filebot.sourceforge.net/forums/v ... =254#p2595
Can you please tell me what I have to do to fix the start up script? I'm a Linux noob :?

Re: Problems with hyphens

Posted: 25 Jan 2013, 16:19
by rednoah
Just find the shell script that is called when you call 'filebot' and then edit it and change it to this:

Code: Select all

#!/bin/sh
java -Dunixfs=false -DuseExtendedFileAttributes=false -Dsun.net.client.defaultConnectTimeout=10000 -Dsun.net.client.defaultReadTimeout=60000 -Dapplication.deployment=spk -Dapplication.dir=$HOME/.filebot -Djava.io.tmpdir=$HOME/.filebot/temp -Djna.library.path=/usr/local/filebot -Djava.library.path=/usr/local/filebot -jar /usr/local/filebot/filebot.jar "$@"
There's plenty of bash tutorials that tell u where to find stuff, how to edit text files, etc