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: 3460

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: 3460

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: 5760

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: 5760

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 ...
by jbr439
13 Aug 2012, 23:10
Forum: Feature Requests and Bug Reports
Topic: request: make unixfs configurable
Replies: 6
Views: 5760

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.