mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-05-15 07:37:32 +08:00
9 lines
96 B
Bash
Executable File
9 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
result=`lsof -t -i4TCP:8081`
|
|
|
|
if [ $result ]
|
|
then
|
|
kill -9 `lsof -t -i4TCP:8081`
|
|
fi
|
|
|