Alles klaar, nog niet netjes helaas
[linuxnijmegen-bash.git] / part1 / 2exit.tex
similarity index 78%
rename from part1/exit.tex
rename to part1/2exit.tex
index 631c801..4dff013 100644 (file)
 \end{frame}
 
 \subsection{Introductie variabelen, speciale variabelen}
-\begin{frame}
+\begin{frame}[fragile]
        \frametitle{Speciale variabelen}
        \begin{block}{Intro variabelen}
-
+               \begin{lstlisting}[style=bashregel]
+                       NAAM=frob
+                       NAAM="frob nicator"
+                       echo $frob
+                       echo ${frob}
+                       echo "$frob"
+               \end{lstlisting}
        \end{block}
        \begin{block}{Speciale variabelen}
+               \begin{lstlisting}[style=bashregel]
+                       $?
+                       $!
+                       $@
+                       $1
+                       $2
+                       ...
+               \end{lstlisting}
        \end{block}
 \end{frame}