1 2 3 4 5 6 7 8 9 10 11 12 13 14
#!/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