I'm trying to parse some html with grep. This is my command
curl https://02323.compute.dtu.dk/DAPodcastTable | grep "\(\d\smin\)" > minutes.txt
I need to find all occurrences of strings looking like "(5 min)" or "(2 min)" etc.
However, when running the command I get
curl: (23) Failed writing body (0 != 4219)
Anyone can see where I've gone wrong?