get-user-agents.sh - annna - Annna the nice friendly bot.
(HTM) git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/annna/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
---
get-user-agents.sh (262B)
---
1 #!/bin/sh
2
3 useragentfile="$HOME/bin/modules/http-user-agent/user-agents.txt"
4
5 {
6 for browser in chrome firefox;
7 do
8 for os in windows osx;
9 do
10 curl -s "https://api.user-agent.io/?browser=${browser}&os=${os}"
11 printf "\n"
12 done
13 done
14 } > $useragentfile
15