#!/bin/bash
pid=`ps -ef | grep main_download | awk NR==1'{print $2}'`
echo $pid
kill -9 $pid