URI: 
       fosdem-streams - fosdem-client - FOSDEM commandline client
  HTML git clone git://bitreich.org/fosdem-client git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/fosdem-client
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
       ---
       fosdem-streams (226B)
       ---
            1 #!/bin/sh
            2 
            3 year="$(date +%Y)"
            4 if [ $# -gt 1 ];
            5 then
            6         year="$1"
            7 fi
            8 
            9 curl -s "https://fosdem.org/${year}/schedule/rooms/" \
           10         | grep /schedule/room/ \
           11         | sed 's,.*href="/..../schedule/room/\([^/]*\)/".*,\1,' \
           12         | sort \
           13         | uniq
           14