Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Iterating through process hierarchy

by ovedpo15 (Pilgrim)
on Jan 06, 2019 at 15:25 UTC ( [id://1228107]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    15,10,name3
    10,#####,name1
    12,10,name2
    5,12,name4
    8,5,name4
    
  2. or download this
    my %data =
        (
    ...
        my $line = join("\t|||\t",@parent_list)."\n";
        print $line;
    }
    
  3. or download this
        E 
        F       |||     E 
    ...
        B       |||     F       |||     E
        D       |||     F       |||     E 
        A       |||     D       |||     F       |||     E
    
  4. or download this
    $VAR1 = {
              'A' => {
    ...
                         'data' => 15
                 },
        }
    
  5. or download this
    $VAR1 = {
            '8' => {
    ...
                         'name' => 'full_D'
                   },
        }
    
  6. or download this
    <id>,<parent>,<name>
    5,###,full_A
    8,5,full_B
    9,5,full_C
    10,8,full_D
    
  7. or download this
    A
    B,A
    C,B,A
    
  8. or download this
    $VAR1 = {
              '/perl/5.14.1/strict.pm' => {
    ...
                                        'data' => 2
                                      }
            };
    
  9. or download this
    $VAR1 = {
            '7299' => {
    ...
                        'name' => './hello_world.pl'
                      }
            };
    
  10. or download this
    ./hello_world.pl
    /perl/5.14.1/strict.pm,./hello_world.pl
    ...
    ./bye_world.pl,./hello_world.pl
    some_text.txt,./hello_world.pl
    some_text.txt,./bye_world.pl,./hello_world.pl
    
  11. or download this
        <file1>,<chain-file(N-1)>,<chain-file(N-1)>,...,<chain-file1><br>
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1228107]
Approved by johngg
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-26 01:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found