16 lines
239 B
TeX
16 lines
239 B
TeX
% master: bash_rechnen.tex
|
|
% Bash rechnen v0.1
|
|
% 2010-08-06 (Rx)
|
|
|
|
\section{Bash rechnen}
|
|
%----------------i----
|
|
|
|
\begin{verbatim}
|
|
echo $((1+1)) gibt 1 aus
|
|
|
|
a=4
|
|
b=5
|
|
echo $((a*b)) gibt 20 aus
|
|
echo $((a-b)) gibt -1 aus
|
|
\end{verbatim}
|
|
|