index update, aufgeräumt
This commit is contained in:
38
5.html
38
5.html
@@ -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>
|
||||
|
Reference in New Issue
Block a user