summaryrefslogtreecommitdiff
path: root/linux-basics/sh-programming/pres_sh-programming_de.tex
diff options
context:
space:
mode:
authorjan <jan@hopfropf.lan>2010-04-16 11:22:26 +0200
committerjan <jan@hopfropf.lan>2010-04-16 11:22:26 +0200
commitb5e1f5b8a6ee32f9c86a2efc5aa616031b5d0052 (patch)
tree50d4552561c27ba389a4bd97e5ed942d8489aa3c /linux-basics/sh-programming/pres_sh-programming_de.tex
parent2a1bd9192c7f9541dc3f9b4f70f57ab8155514ba (diff)
SH programming bugfixes.
Diffstat (limited to 'linux-basics/sh-programming/pres_sh-programming_de.tex')
-rw-r--r--linux-basics/sh-programming/pres_sh-programming_de.tex5
1 files changed, 4 insertions, 1 deletions
diff --git a/linux-basics/sh-programming/pres_sh-programming_de.tex b/linux-basics/sh-programming/pres_sh-programming_de.tex
index dbecb3d..9334267 100644
--- a/linux-basics/sh-programming/pres_sh-programming_de.tex
+++ b/linux-basics/sh-programming/pres_sh-programming_de.tex
@@ -46,7 +46,10 @@ MY_VAR=17
PAR_1=$1
datum=`date`
-echo variable is $(MYVAR), parameter is $(PAR_1)
+echo variable is ${MYVAR}, parameter is ${PAR_1}
+echo date is $datum
+echo hostname of this machine is $(hostname)
+echo
\end{lstlisting}
\end{frame}