#!/bin/bash # alfplayer # 2014-06-12 # # Get Parabola sync DBs from repo.parabola.nu. repo="$1" arch="${2:-$(uname -m)}" url="http://repo.parabola.nu/${repo}/os/${arch}/${repo}.db" echo "wget -q "$url" -O - | tar xzO" wget -q "$url" -O - | tar xzO