In deamon mode, argument on CLI are executed first
This commit is contained in:
parent
bbd82406f9
commit
8e7273fa88
1 changed files with 4 additions and 0 deletions
|
|
@ -393,6 +393,10 @@ if ($deamon)
|
||||||
|
|
||||||
threads->create(\&create_socket, $m, $socket) if ($socket);
|
threads->create(\&create_socket, $m, $socket) if ($socket);
|
||||||
|
|
||||||
|
while ($_ = shift) {
|
||||||
|
parse($m, $_);
|
||||||
|
}
|
||||||
|
|
||||||
while(<>)
|
while(<>)
|
||||||
{
|
{
|
||||||
chomp $_;
|
chomp $_;
|
||||||
|
|
|
||||||
Reference in a new issue