diff options
Diffstat (limited to 'dev/index.html')
-rw-r--r-- | dev/index.html | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/dev/index.html b/dev/index.html index cd314f9..3d20e72 100644 --- a/dev/index.html +++ b/dev/index.html @@ -37,17 +37,20 @@ </ul> <h2>Shell Script</h2> - <h3 id="bash">Dash</h3> - <ul> - <li>Dash</li> - </ul> - - - <h3 id="bash">Bash</h3> + <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>Bash</li> + <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> |