Ad Widget

Collapse

Two parameters with custom item (within UserParameter)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cbichis
    Member
    • Apr 2013
    • 30

    #1

    Two parameters with custom item (within UserParameter)

    Hi,

    I would like to pass two parameters to a custom item.

    UserParameter=app.function[*,*],/usr/bin/app-function $1 $2

    However, this doesn't seems to work:

    failed to add UserParameter "app.function[*": parsing error

    How can I pass two parameters ?
  • dennisj
    Junior Member
    • Apr 2010
    • 24

    #2
    Change that to:

    UserParameter=app.function[*],/usr/bin/app-function $1 $2

    Then it should work.

    Comment

    Working...