google.de: Währungsumrechner | Wechelkurs
2019-03-07
Es ist möglich google.de zu nutzen um Währungs-Wechselkurse abzufragen. Nachfolgend Beispiele mit bash
und php
.
bash
/ CLI
abfrage Wechselkurs von USD zu EUR (1 USD = x EUR)
curl -A "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0" -s https://www.google.de/search?q=usd+eur | grep -oP 'data-exchange-rate="\K[^"]+'
liefert bspw.: […]
bash: remove files interactively
2019-02-23
Q: How to remove files interactively so that one is prompted for each file before the final deletion.
A: use the rm
command with the -i
option.
remove interactively
all files which match Pattern "*_160x120"
rm -i *_160x120
example
admin1@erazer:/tmp$ rm -i *_160x120
rm: Normale Datei 'bild029.f15a3c6ded0213f […]