12 lines
175 B
Bash
Executable file
12 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo pacman -Syu
|
|
mkdir /tmp/yay
|
|
cd /tmp/yay
|
|
|
|
curl -OJ 'https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=yay'
|
|
makepkg -si
|
|
|
|
cd
|
|
rm -rf /tmp/yay
|
|
yay --version
|