diff --git a/main.sh b/main.sh index ae96e85..4f6f86f 100644 --- a/main.sh +++ b/main.sh @@ -1,25 +1,25 @@ #! /bin/bash -# Initalisiere Variablen +# Variable initalisation . ./init.sh -# Lese configdatei +# Read the config file . ./config.sh -# Lese HTTP-Anfrage +# Read the HTTP-request . ./readrequest.sh -# Und vieles andere... +# Some URL checks and modifications . ./urlcheck.sh -# Wenn das Dokument schon fertig ist, dann den folgenden Schritt überspringen +# Skip following step, if the document is already created successfully if [ "$DONE" != "true" ]; then - # Schreibe fertiges HTML-Dokument + # Write finished file . ./sendfile.sh fi -# Verwende unix2dos auf das Dokument... +# Convert Unix to Dos unix2dos $OUTFILE &> /dev/null -# Gebe fertiges HTML-Dokument aus +# Print finished document cat $OUTFILE