Changeset 5 for trunk/www/process_tasks.php
- Timestamp:
- Jun 9, 2009, 10:39:27 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/process_tasks.php
r4 r5 8 8 while($Task = $DbResult->fetch_assoc()) 9 9 { 10 echo('Provádím '.$Task[' Command']."...\n");10 echo('Provádím '.$Task['Title']."...\n"); 11 11 foreach(explode("\n", $Task['CommandList']) as $Command) 12 12 { 13 13 $Output = array(); 14 echo($Command."\n"); 14 15 exec($Command, $Output); 15 16 echo(implode("\n", $Output));
Note:
See TracChangeset
for help on using the changeset viewer.