Search found 5 matches

by jbr439
16 Aug 2012, 20:49
Forum: Help and Support
Topic: Check in script for command line option use?
Replies: 2
Views: 3158

Re: Check in script for command line option use?

Works like a charm. Thanks!
by jbr439
16 Aug 2012, 01:27
Forum: Help and Support
Topic: Check in script for command line option use?
Replies: 2
Views: 3158

Check in script for command line option use?

Hello

Is it possible to check in a script for a command line option? E.g., can I check in my script if '-non-strict' was used? I can't find any mention of this anywhere.

[Perfectly happy to RTFM if someone can point me to the right place]

Thanks
by jbr439
15 Aug 2012, 16:20
Forum: Feature Requests and Bug Reports
Topic: request: make unixfs configurable
Replies: 6
Views: 5090

Re: request: make unixfs configurable

That works for me. Thanks!
by jbr439
14 Aug 2012, 23:41
Forum: Feature Requests and Bug Reports
Topic: request: make unixfs configurable
Replies: 6
Views: 5090

Re: request: make unixfs configurable

OK, this is what my filebot.sh now looks like: #!/bin/bash # Comment out following case statement to disable automatic setting of 'unixfs' case $(uname -s) in Linux|Darwin|SunOS|AIX|FreeBSD) FILEBOT_UNIXFS=true ;; *) FILEBOT_UNIXFS=false ;; esac java -Dunixfs=${FILEBOT_UNIXFS:-false} -Xmx256m ...
by jbr439
13 Aug 2012, 23:10
Forum: Feature Requests and Bug Reports
Topic: request: make unixfs configurable
Replies: 6
Views: 5090

request: make unixfs configurable

Hello

The linux filebot script has unixfs hardcoded to false: "java -Dunixfs=false ..."

It would be useful if the value was configurable, either via an option or an environment variable.
E.g., "java -Dunixfs=${FILEBOT_UNIXFS:-false} ..."

Please consider this.