You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
179 B
Perl

# The syntax of the getpgrp function is pgroup = getpgrp (pid);
#!/usr/local/bin/perl
$pgroup = getpgrp (0);
print ("The process group for this program is $pgroup.\n");