FIREFOX USER AGENTS =================== This gopher hole and its plain web sibling now host a file, which contains a daily updated list of most recent Firefox user-agents. gopher://triapul.cz/0/files/firefox-user-agents.txt https://triapul.cz/firefox-user-agents.txt The idea is to be able to quickly retrieve the list and/or incorporate it in custom scripts. For example: Start the lynx browser with the following user-agent (3rd line of the file), using curl: Mozilla/5.0 (X11; Linux i686; rv:123.0) Gecko/20100101 Firefox/123.0 ``` $ lynx -useragent "$(curl -s https://triapul.cz/firefox-user-agents.txt | sed -n '3p')" ``` Start the links browser in graphical mode with the following user-agent, (first line of the file), using netcat: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0 ``` $ links -g -http.fake-user-agent "$(echo "/files/firefox-user-agents.txt" | nc triapul.cz 70 | head -n1)" ``` If you can find a use for this, go for it. That is all. ~pmjv