Skip to content

Instantly share code, notes, and snippets.

@luka5
Created January 4, 2021 19:12
Show Gist options
  • Save luka5/43d6b72806458eb66e53f26668563c62 to your computer and use it in GitHub Desktop.
Save luka5/43d6b72806458eb66e53f26668563c62 to your computer and use it in GitHub Desktop.
List all the Salewa shoes with label vegan.
#!/usr/bin/env bash
for u in $(curl --silent https://www.salewa.com/de-de/herren-schuhe | grep product--information-box | sed -e "s|<a href=\"||" | sed -e "s|\" .*||"); do
if curl --silent $u | grep -i vegan &>/dev/null; then
echo $u
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment