~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to graphs/directed/shells.dot

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
digraph shells {
 
2
        size="7,8";
 
3
        node [fontsize=24, shape = plaintext];
 
4
 
 
5
        1972 -> 1976;
 
6
        1976 -> 1978;
 
7
        1978 -> 1980;
 
8
        1980 -> 1982;
 
9
        1982 -> 1984;
 
10
        1984 -> 1986;
 
11
        1986 -> 1988;
 
12
        1988 -> 1990;
 
13
        1990 -> future;
 
14
 
 
15
        node [fontsize=20, shape = box];
 
16
        { rank=same;  1976 Mashey Bourne; }
 
17
        { rank=same;  1978 Formshell csh; }
 
18
        { rank=same;  1980 esh vsh; }
 
19
        { rank=same;  1982 ksh "System-V"; }
 
20
        { rank=same;  1984 v9sh tcsh; }
 
21
        { rank=same;  1986 "ksh-i"; }
 
22
        { rank=same;  1988 KornShell Perl rc; }
 
23
        { rank=same;  1990 tcl Bash; }
 
24
        { rank=same;  "future" POSIX "ksh-POSIX"; }
 
25
 
 
26
        Thompson -> Mashey;
 
27
        Thompson -> Bourne;
 
28
        Thompson -> csh;
 
29
        csh -> tcsh;
 
30
        Bourne -> ksh;
 
31
        Bourne -> esh;
 
32
        Bourne -> vsh;
 
33
        Bourne -> "System-V";
 
34
        Bourne -> v9sh;
 
35
        v9sh -> rc;
 
36
        Bourne -> Bash;
 
37
        "ksh-i" -> Bash;
 
38
        KornShell -> Bash;
 
39
        esh -> ksh;
 
40
        vsh -> ksh;
 
41
        Formshell -> ksh;
 
42
        csh -> ksh;
 
43
        KornShell -> POSIX;
 
44
        "System-V" -> POSIX;
 
45
        ksh -> "ksh-i";
 
46
        "ksh-i" -> KornShell;
 
47
        KornShell -> "ksh-POSIX";
 
48
        Bourne -> Formshell;
 
49
 
 
50
        edge [style=invis];
 
51
        1984 -> v9sh -> tcsh ;
 
52
        1988 -> rc -> KornShell;
 
53
        Formshell -> csh;
 
54
        KornShell -> Perl;
 
55
}