blob: bf7f222fe9b2af77fb31edbfc4c58617937d85f1 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
set -euo pipefail
# <td headers="view-ocm-pp-project-title-table-column" class="views-field views-field-ocm-pp-project-title"><a href="/node/21090">Identifying novel ways of inducing effective angiogenesis and the development of arteries</a> </td>
curl -s 'https://postdocprogram.mpg.de/all-postdoc-positions' \
| sed -n '/td.*project-title/ s/^ *<td[^>]*> *<a href="\([^"]*\)"[^>]*>\([^<]*\).*/\2 (https:\/\/postdocprogram.mpg.de\1)/p'
|