Beispiel #1
0
/* do_jobs - Execute the builtin fg command */
void
do_jobs()
{
    jobs_listjobs();
    putchar('\n');
    
    return;
}
Beispiel #2
0
/* do_jobs - Execute the builtin fg command */
void do_jobs() {
    if (verbose) {
        printf("Current jobs in the foreground process\n");
    }
    jobs_listjobs();
}