From 6306cbb6fce41855e48964e5f7155940f804794c Mon Sep 17 00:00:00 2001 From: Jack-Benny Persson Date: Thu, 12 Dec 2013 22:21:25 +0100 Subject: [PATCH] =?UTF-8?q?B=C3=A4tte=20f=C3=B6rklaring=20p=C3=A5=20rad=20?= =?UTF-8?q?50?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Labb4/laborationsrapport.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Labb4/laborationsrapport.md b/Labb4/laborationsrapport.md index 56114f8..00a34bb 100644 --- a/Labb4/laborationsrapport.md +++ b/Labb4/laborationsrapport.md @@ -47,7 +47,7 @@ echo ${Test10:+Då} # Skriver ut Då, men lämnar $Test10 till "Hej" unset Test10 echo ${Test10:+Då} # Skriver inte något då $Test10 är unset -echo ${Test20:?Missing} # Skriver ut "Missing" till standard error (STDERR) +echo ${Test20:?Missing} # Skriver ut "Missing" till STDERR eftersom $Test20 är unset ``` ### Övningar ###