ich beherrsche eigentlich schon recht ordentlich Java Programmierung als auch einige Skriptsprachen. Bash war jedoch etwas vor dem ich mich immer gesträubt hatte.
Ich versuche mir nun zumindest die wichtigsten Befehle bzw. Syntax hierzu einzuprägen.
Einer meiner Versuche hatte wie folgend ausgehen:
Code: Alles auswählen
for((i=0;i<10;i++));do if [$i lt 4]; then echo "hello $i"; fi; done;
Code: Alles auswählen
-bash: [0: command not found
-bash: [1: command not found
-bash: [2: command not found
-bash: [3: command not found
-bash: [4: command not found
-bash: [5: command not found
-bash: [6: command not found
-bash: [7: command not found
-bash: [8: command not found
-bash: [9: command not found
Könnte mir wer sagen worans hakt?