Last active
March 20, 2020 17:42
-
-
Save Nurlan199206/c430807f6c52f5e43833ab20c31fd83c to your computer and use it in GitHub Desktop.
curl example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while true; do curl http://35.204.160.171 -d index.php; sleep 1; done | |
curl -sL https://nationalbank.kz/rss/rates_all.xml | xmllint --format - --xpath "string(//rss/channel/item" | awk '{print$1}' | grep -E 'title|description' | sed -e 's/[^A-Z^0-9^.]//g' | awk 'NR >= 11 && NR <= 12' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment