download_useragents.sh - dotfiles - These are my dotfiles. There are many like it, but these are mine.
 (HTM) git clone git://jay.scot/dotfiles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) 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/index.json'
            7 path="$HOME/.config/qutebrowser/useragent_list.json"
            8 
            9 curl "$url" -o "$path"