diff --git a/5.html b/5.html index 7dee458..8c07cc8 100644 --- a/5.html +++ b/5.html @@ -131,7 +131,7 @@ message="hallo Welt" message=hello\ Welt -

+				
 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.
+ └ Erster Bereich: Von ' umschlossen.

Input - Output redirection

@@ -331,7 +331,41 @@ file_backup $1 $2 backup verz anlegen
+
+

Script Kontrolle

+ +
+
+

Job Control

+

+#!/bin/bash
+find / -name *lib* 	2>/dev/null > libs.txt
+
+# CTRL - Z
+
+jobs
+
+fg 
+
+# CTRL - Z
+
+bg 
+					
+ +

diff --git a/index.html b/index.html
index 27a6cba..4b1f997 100644
--- a/index.html
+++ b/index.html
@@ -16,10 +16,11 @@