mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
* Misc: Ignore JetBrains IDE files * Modules: Update Modules for 2.6.0 (1) * SiteSurvey: Actually install mdk3 dependency. * Modules: Bump version numbers for updated modules
14 lines
221 B
Bash
Executable File
14 lines
221 B
Bash
Executable File
#!/bin/sh
|
|
#2015 - Whistle Master
|
|
|
|
MYTIME=`date +%s`
|
|
MYCMD=`cat /tmp/ngrep.run`
|
|
|
|
if [ "$1" = "start" ]; then
|
|
eval ${MYCMD}
|
|
rm -rf /tmp/ngrep.run
|
|
elif [ "$1" = "stop" ]; then
|
|
killall -9 ngrep
|
|
rm -rf /tmp/ngrep.run
|
|
fi
|