Commit 1f8e494f authored by H. Fischer's avatar H. Fischer
Browse files

Reformulate task #67

parent be460f48
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -80,8 +80,8 @@ export const practice = test("Linux-Übungsmodus", function() {
        this.verify("cat satz").hasOutput("Colorless green ideas sleep furiously")
    })

    this.exercise("Inhalt anzeigen", async function () {
        this.describe(`Zeige den Inhalt der Datei "satz" auf der Konsole an.`)
    this.exercise("Inhalt ausgeben", async function () {
        this.describe(`Lasse den Inhalt der Datei "satz" in die Konsole ausgeben. Verwende dafür keinen Texteditor oder Pager.`)

        await this.prepareWith("if [[ ! -d /root/tux ]]; then mkdir /root/tux; fi; cd /root/tux; echo Colorless green ideas sleep furiously > satz")