Skip to content

Instantly share code, notes, and snippets.

@luka5
luka5 / salwa-vegan.sh
Created January 4, 2021 19:12
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