summaryrefslogtreecommitdiff
path: root/linux-basics/sh-programming/pres_sh-programming_de.tex
blob: 37fbafba206428fef837a3848dbb05abc1108990 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
\input{configpres}

\title{Einführung in die Shell-Programmierung}
\maketitle

\begin{frame}
\frametitle{Aufbau von Shell-Skripten}
\begin{itemize}
\item Syntax: "\#!/ein/interpreter"
\pause
\item Beliebiges Programm als Interpreter möglich
\pause
\item Beispiele hier: "\#!/bin/sh"
\pause
\item Danach beliebige Shell-Befehle möglich
\end{itemize}
\end{frame}

\begin{frame}[fragile]
\frametitle{Hello World als Shell-Script}
\begin{lstlisting}
#!/bin/sh
echo Hello World
\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Variablen und Parameter}
\begin{lstlisting}
#!/bin/sh

MY_VAR=17
PAR_1=$1
datum=`date`

echo variable is ${MYVAR}, parameter is ${PAR_1}
echo date is $datum
echo hostname of this machine is $(hostname)
echo 
\end{lstlisting}

\end{frame}

\begin{frame}[fragile]
\frametitle{Ausgabe-Umleitung}
\begin{lstlisting}
#!/bin/sh

# How many lines in addr.txt contain "Jones" ?
# Store the result in "jones_count"
grep Jones addr.txt | wc -l > jones_count

# Append a message to a log file
echo "My message" >> log_file

exit 0

\end{lstlisting}

\end{frame}

\begin{frame}[fragile]
\frametitle{Bedingte Verzweigungen}
\begin{lstlisting}
#!/bin/sh

if [ bedingung ]
  then
    ...
  else
    ...
fi

# in one line:

if [ bedingung ] ; then ... ; fi

\end{lstlisting}

\end{frame}

\begin{frame}[fragile]
\frametitle{Bedingte Verzweigungen}
\begin{lstlisting}
#!/bin/sh

# Zahlentests: -eq -ne -lt -gt -le -ge
zahl=15
if [ $zahl -lt 20 ] ; then ...

# String-Tests: = != < > -n -z
string="Hallo"
if [ $string != "hello" ] ; then ...

\end{lstlisting}

\end{frame}

\begin{frame}[fragile]
\frametitle{Bedingte Verzweigungen}
\begin{lstlisting}
#!/bin/sh
# Dateitests, z.B. if [ -f $datei ] ; then ...
# Auswahl:
# -f ist eine normale Datei
# -d ist ein Verzeichnis
# -e existiert
# -s existiert und ist nicht leer
# -r ist lesbar
# -w ist schreibbar
# -x ist ausfuehrbar
# -b ist ein Block Device
# -c ist ein Character Device
\end{lstlisting}

\end{frame}

\begin{frame}[fragile]
\frametitle{Bedingte Verzweigungen}
\begin{lstlisting}
#!/bin/sh

# Does addr.txt contain "Jones" ?
if grep Jones addr.txt ; then ...

# Return value 0 means OK
exit 0

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Bedingte Verzweigungen}
\begin{lstlisting}
#!/bin/sh

VAR=abcdef

case $VAR in
abc)
    echo "exactly abc"
    ;;
abcdef)
    echo "exactly abcdef"
    ;;
abc*)
    echo "begins with abc"
    ;;
*)
    echo "match everything"
    ;;
esac

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Bedingte Verzweigungen}
\begin{lstlisting}
#!/bin/sh

# Short circuit tests:

make && make install

grep Jones addr.txt || echo "No Jones found!"

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Schleifen}
\begin{lstlisting}
#!/bin/sh

for datei in datei1 datei2 datei3
do
    cp $datei $datei.bak
done

for datei in *
do
    ...
done

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Schleifen}
\begin{lstlisting}
#!/bin/sh

while [ bedingung ]
do
    ...
done

while [ bedingung ] ; do ... ; done

# bedingung wie bei if

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Funktionen}
\begin{lstlisting}
#!/bin/sh

error_log() {
  echo "Fehler: $1" >> my_log_file
}

...

error_log "Datei nicht gefunden."

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Einbinden anderer Skripte}
\begin{lstlisting}
#!/bin/sh

# Include an external script:
. my_other_script

# run another script/command in the background:
my_other_script&

\end{lstlisting}
\end{frame}

\begin{frame}[fragile]
\frametitle{Zugriff auf Dateien}
\begin{lstlisting}
#!/bin/sh

ls -1 > dateiliste.txt

while read dateiname
do
    if [ -d $dateiname ]
    then
      echo "$dateiname ist ein Verzeichnis"
    fi
done < dateiliste.txt

\end{lstlisting}
\end{frame}

\input{tailpres}