Skip to content
Snippets Groups Projects
Commit 16316ede authored by Bob Mottram's avatar Bob Mottram
Browse files

Quotes

parent 63745b26
No related branches found
No related tags found
No related merge requests found
......@@ -407,11 +407,11 @@ function mesh_batman {
echo '' >> $batman_script
echo ' # kill processes' >> $batman_script
echo ' zeronet_proc=$(ps aux | grep zeronet | grep -v grep | awk -F " " "{print $2}" | head -n1)' >> $batman_script
echo ' if [ $zeronet_proc ]; then' >> $batman_script
echo ' if [ "$zeronet_proc" ]; then' >> $batman_script
echo ' kill -9 $zeronet_proc 2> /dev/null' >> $batman_script
echo ' fi' >> $batman_script
echo ' tracker_proc=$(ps aux | grep bttrack | grep -v grep | awk -F " " "{print $2}" | head -n1)' >> $batman_script
echo ' if [ $tracker_proc ]; then' >> $batman_script
echo ' if [ "$tracker_proc" ]; then' >> $batman_script
echo ' kill -9 $tracker_proc 2> /dev/null' >> $batman_script
echo ' fi' >> $batman_script
echo '' >> $batman_script
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment