index update, aufgeräumt

This commit is contained in:
Daniel Schubert 2019-01-11 18:33:50 +01:00
parent c15ef1bab5
commit 7609af65c8
2 changed files with 47 additions and 8 deletions

38
5.html
View File

@ -131,7 +131,7 @@ message="hallo Welt"
message=hello\ Welt
</code></pre>
</section>
<section><pre style="font-size: .5em;width: auto"><code>
<section><pre style="font-size: .5em;width: auto">
echo 'So sprach'"'"'s und ging ohne einen Backslash (\) weiter.'
└───┬───┘└┬┘└──────────────────┬─────────────────────┘
│ │ │
@ -143,7 +143,7 @@ echo 'So sprach'"'"'s und ging ohne einen Backslash (\) weiter.'
│ └ Zweiter Bereich: Von " umschlossen, enthält ein
│ einzelnes '.
└ Erster Bereich: Von ' umschlossen.</code></pre></section>
└ Erster Bereich: Von ' umschlossen.</pre></section>
<section>
<h3>Input - Output redirection</h3>
@ -331,7 +331,41 @@ file_backup $1 $2
backup verz anlegen
</aside>
</section>
<section>
<h4>Script Kontrolle</h4>
<ul>
<li class="fragment">CTRL + C - Abbbruch</li>
<li class="fragment">CTRL + Z - Pausieren</li>
<li class="fragment"><code>fg</code> - Fortsetzen</li>
<li class="fragment"><code>bg</code> - im Hintergrund Fortsetzen</li>
<li class="fragment">CTRL + D - Eingabe beenden</li>
</ul>
</section>
<section>
<h4>Job Control</h4>
<pre><code>
#!/bin/bash
find / -name *lib* 2>/dev/null > libs.txt
# CTRL - Z
jobs
fg
# CTRL - Z
bg
</code></pre>
<aside class="notes">
cat > test.txt<br>
dd<br>
ff<br>
gg<br>
CTRL - D
</aside>
</section>
<section>
<pre><code>

View File

@ -16,10 +16,11 @@
<div class="ui segment">
<h2>Präsentationen</h2>
<ol>
<li><a href="1.html">1. Abend</a></li>
<li><a href="2.html">2. Abend</a></li>
<li><a href="3.html">3. Abend</a></li>
<li><a href="4.html">4. Abend</a></li>
<li><a href="1.html">1. Abend - Debian Installation, grafische Oberflächen</a></li>
<li><a href="2.html">2. Abend - Datei System, apt, Hilfe</a></li>
<li><a href="3.html">3. Abend - Bash Einführung, erste Befehle</a></li>
<li><a href="4.html">4. Abend - Bash Scripting Einführung</a></li>
<li><a href="5.html">5. Abend - Bash Scripting Fortsetzung</a></li>
</ol>
<p>Git Repository:<a href="https://git.scytec.de/danthefan/linuxkurs" target="_blank">GitLab</a></p>
@ -43,11 +44,15 @@
<li><a href="https://ss64.com/bash/" target="_blank">Umfassende Bash Referenz mit Suche</a></li>
<li><a href="https://www.shellbefehle.de/befehle/" target="_blank">Shell Befehle</a></li>
<li><a href="https://wiki.archlinux.de/title/Bash-Prompt_anpassen" target="_blank">Bash Prompt anpassen </a></li>
<li><a href="https://github.com/agarrharr/awesome-cli-apps" target="_blank">Awesome CLI Apps</a></li>
<li><a href="https://github.com/alebcay/awesome-shell" target="_blank">Awesome Shell </a></li>
<li><a href="http://www.gnu.org/software/bash/manual/html_node/Bash-Conditional-Expressions.html" target="_blank">Conditional Expressions für [ ] / test</a></li>
<li><a href="https://devhints.io/bash" target="_blank">bash scripting Cheat Sheet</a></li>
<h3>reguläre Ausdrücke</h3>
<li><a href="https://regexr.com/" target="_blank">RegExr.com - Reguläre Ausdrücke testen</a>
<li><a href="http://rubular.com/" target="_blank">rubular.com - Reguläre Ausdrücke testen</a>
<h3>Bash scripting</h3>
<li><a href="http://www.gnu.org/software/bash/manual/html_node/Bash-Conditional-Expressions.html" target="_blank">Conditional Expressions für [ ] / test</a></li>
</ul>
</div>
</div>