in reply to using UID-MIN

Each parameter ("-g $gid", for example), should be separate parameters ('-g', $gid). You are creating a single parameter of the form -g $gid instead of two parameters (the flag and the value). This should be done for every flag+value that you have combined into a single parameter.

--MidLifeXis

Replies are listed 'Best First'.
Re^2: using UID-MIN
by papillon (Initiate) on Jan 27, 2014 at 18:17 UTC
    Using separate parameter for each flag and value solve my problem. Thanks, Papillon