mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-31 20:11:29 +08:00
10 lines
252 B
Bash
Executable File
10 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
. /usr/nvr/nvrcommon
|
|
|
|
/etc/init.d/nvr stop
|
|
kill -9 $(busybox ps | grep nvrrecord | grep -v grep | awk '{print$1}') 2>&1 &
|
|
|
|
for i in $_all_clients;do
|
|
kill -9 $(ps -w | grep $i | grep -v grep | grep -v "\-f flv" | awk '{print$1}') 2>&1 &
|
|
done
|