about summary refs log tree commit diff stats
path: root/dev/index.html
blob: 3d20e72ed3381acf2468c97c583c04b8e310280d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html dir="ltr" lang="en">
    <head>
        <meta charset='utf-8'>
        <title>Development</title>
    </head>
    <body>

        <a href="../index.html">Documentation Index</a>
        <h1>Development</h1>

        <p>Tools for development and debugging</p>

        <h2 id="scr">Source Code Revision</h2>

        <ul>
            <li><a href="git.html">Git</a>
                <ul>
                    <li><a href="git.html#teamwork">1. Team workflow</a>
                        <ul>
                            <li><a href="git.html#feature">1.1. Feature</a></li>
                            <li><a href="git.html#release">1.2. Release</a></li>
                            <li><a href="git.html#tags">1.3. Tags</a></li>
                            <li><a href="git.html#hotfix">1.4. Hotfix</a></li>
                        </ul>
                    </li>
                    <li><a href="git.html#local">2. Local Workflow</a></li>
                </ul>
            </li>
        </ul>

        <h2 id="c">C</h2>

        <ul>
            <li><a href="http://inti.sourceforge.net/tutorial/libinti/autotoolsproject.html">Autotools</a></li>
            <li><a href="gdbc.html">GDB</a></li>
        </ul>

        <h2>Shell Script</h2>

        <p>Script files that start with "#!/bin/sh" use dash (in crux),
        /bin/sh is a link to dash, while files that start with "#!/bin/bash"
        use bash;</p>

        <ul>
            <li><a href="dash.html">Dash - Scripting</a>
                <ul>
                    <li><a href="dash.html#hello">Hello World</a></li>
                    <li><a href="dash.html#io">Input / Output</a></li>
                    <li><a href="dash.html#var">Variables</a></li>
                    <li><a href="dash.html#if">Conditions</a></li>
                </ul>
            </li>
        </ul>

        <h2>Python</h2>
        <ul>
            <li>Python</li>
        </ul>

        <h2>Perl</h2>
        <ul>
            <li>Perl</li>
        </ul>

        <h2>JavaScript</h2>
        <ul>
            <li>JavaScript</li>
        </ul>

        <h2>PHP</h2>

        <ul>
            <li>PHP</li>
        </ul>

        <ul>
            <li>PHP Unit</li>
        </ul>

        <a href="../index.html">Documentation Index</a>
        <p>
        This is part of the c9-doc Manual.
        Copyright (C) 2016
        c9 team.
        See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a>
        for copying conditions.</p>


    </body>

</html>