You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
360 B
17 lines
360 B
#!/bin/sh
|
|
|
|
node server/server.js &
|
|
|
|
node src/server/server.js
|
|
|
|
if lsof -Pi :3002 -sTCP:LISTEN -t >/dev/null; then
|
|
# Tuer le processus associé au port
|
|
pid=$(lsof -Pi :3002 -sTCP:LISTEN -t)
|
|
kill -9 $pid
|
|
fi
|
|
|
|
if lsof -Pi :3003 -sTCP:LISTEN -t >/dev/null; then
|
|
# Tuer le processus associé au port
|
|
pid=$(lsof -Pi :3003 -sTCP:LISTEN -t)
|
|
kill -9 $pid
|
|
fi |