mysql - List all php cli scripts running in the background -


i running background tasks php cli using nohup php app.php &.how can list scripts have sent background , how can forcibly close it?.

my script looks like

$dbh = new pdo('mysql:host=localhost;dbname=odesk', 'root', ''); $sth = $dbh->prepare("select id,msisdn new_r4 limit 44908,50000"); $sth->execute();  while($result = $sth->fetch(pdo::fetch_assoc)){ 

will script sent background stop once have processed rows?.


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -