j
k
j a
j l
Stefan Seyfried wrote:
awk 'BEGIN { getline; getline; print $1 }; END { print $1 }' tabellenfile
Einfacher:
awk 'NR==1 {print $1} END {print $1}' mdaten.txt
Die Striche habe ich mal nicht mit zur Tabelle gezaehlt, sonst natuerlich NR==2.
Stefan
.
Back to the thread
Back to the list