python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Kill command does the job but gives error
I'm using shell script to stop a python service and to do that I'm executing the below command.
ps -ef | grep service.py | grep -v grep | awk '{print $2}' | xargs kill -9
After executing I'm getting b...
Saad Khan
Votes: 0
Answers: 1
Port In Use code: 'EADDRINUSE', even after kill command
I have been running several MERN activities, one after another, working through exercises, but at some point when I run npm run develop, even thought I hit the kill command (trash icon) on mac, it tel...
DoshPocket
Votes: 0
Answers: 1
C# : Killing a specific file opened and not all instance
I'm trying to open an excel file in my application via Process.
When the form is closed I want to close that file automatically .
The issue that I'm facing is even if I specify the PID process of the ...
KiraKo
Votes: 0
Answers: 0
Need to parallel run a video on multiple hosts BASH
So I have a for loop where
for HOST in $HOST_LOOP
do
ssh $HOST ... play video ... &
done
wait
I wanted to play the video on those hosts at the same time, that's what the & is fo...
Tiara Knight
Votes: 0
Answers: 2