| download_useragents.sh - dotfiles - These are my dotfiles. There are many like … | |
| git clone git://jay.scot/dotfiles | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| download_useragents.sh (249B) | |
| --- | |
| 1 #!/bin/bash | |
| 2 # | |
| 3 # download the most common used useragents f or using in qutebrowser. | |
| 4 # | |
| 5 | |
| 6 url='https://raw.githubusercontent.com/Kikobeats/top-user-agents/master/… | |
| 7 path="$HOME/.config/qutebrowser/useragent_list.json" | |
| 8 | |
| 9 curl "$url" -o "$path" |