You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
850 B
Bash
16 lines
850 B
Bash
RED='\033[0;31m'
|
|
NC='\033[0m'
|
|
|
|
printf "${RED}markthalle:${NC}"
|
|
curl -s https://produkte.globus.de/braunschweig/getraenke/soft-drinks/eistee/4029764002804/mate-tee-erfrischungsgetraenk-20x-0-500-liter | grep product-detail-price-container -A 4 | tail -n 1
|
|
printf "${RED}potyka:${NC}"
|
|
curl -s https://viel-durst.de/brause-limonade/mate/349/club-mate | grep itemprop=\"price\"
|
|
printf "${RED}rewe:${NC}"
|
|
./curl-impersonate/curl_ff117 -s -b wksMarketsCookie=$(echo '{"stationary":{"wwIdent":"540939","serviceTypes":["STATIONARY"]}}' | jq -sRr @uri) https://www.rewe.de/produkte/club-mate-20x0-5l/5955530 | grep price:
|
|
|
|
|
|
echo "Suche Angebote ..."
|
|
|
|
printf "${RED}Netto:${NC}\n"
|
|
./curl-impersonate/curl_ff117 -s -b netto_user_stores_id=2097 https://www.netto-online.de/filialangebote/1/30664 | grep "SKU=417707" | grep -o -e '&Price=[^&]*' -e '&Name=[^&]*'
|