Files
react-native-code-push/scripts/stop-packager.sh
2015-06-10 16:21:29 -07:00

9 lines
96 B
Bash
Executable File

#!/bin/sh
result=`lsof -t -i4TCP:8081`
if [ $result ]
then
kill -9 `lsof -t -i4TCP:8081`
fi