scripts/buy.sh

14 lines
322 B
Bash
Raw Normal View History

2024-02-28 10:04:05 +00:00
#!/bin/bash
tutti="https://www.tutti.ch/de/li/ganze-schweiz?q="
ricardo="https://www.ricardo.ch/de/s/"
toppreis="https://www.toppreise.ch/produktsuche?q="
broswer='/usr/bin/firefox --new-window'
cmd='$broswer "$ricardo$1" &'
eval "$cmd"
cmd='$broswer "$tutti$1" &'
eval "$cmd"
cmd='$broswer "$toppreis$1" &'
eval "$cmd"