9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -exuo pipefail
|
|
|
|
TAR="$1.tar.gz"
|
|
|
|
curl "https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz" -o "${TAR}"
|
|
tar zxvf "${TAR}"
|
|
rm "${TAR}"
|