Dienstag, 26. Februar 2008

Videos vom Sonntagsaikido 24.02.08

Ich habe beim letzten Sonntagsaikido einige Videos gemacht. Bei Interesse können diese hier heruntergeladen werden. Als Hinweis zum Abspielen: VLC.


Gruß Gervin

1 Kommentar:

floh.edo hat gesagt…

bash "einzeiler" sind toll ^^
#!/bin/bash
URL="http://user.cs.tu-berlin.de/~faustus/aikido20080224/" ; curl $URL | grep gopher-menu | while read LINE; do LINE=${LINE#*href=\'}; DIR=${LINE%%\'>*}; curl $URL/$DIR/ | grep avi | while read FILE; do FILE=${FILE#*href=\'}; FILE=${FILE%%\'>*}; curl -o ${DIR//\%20/_}_${FILE} $URL/$DIR/$FILE ; done ;done

Gruß, Floh