isha thakur
isha thakur

Reputation: 3

How to concatenate result from one query to other query

I have two queries:

I want to run them as single query.

I have already tried below different queries but none is working:

How can I do this to achieve single line query?

Upvotes: 0

Views: 81

Answers (1)

Pacifist
Pacifist

Reputation: 3203

can you try this :

ps aux | pgrep -f mongod_arb | xargs kill -SIGUSR1
ps aux | pgrep -f mongod_arb | xargs sudo kill -SIGUSR1 # if permission issues.

Upvotes: 1

Related Questions