Linux_scriptek/yay.sh
2024-12-21 13:46:26 +01:00

10 lines
No EOL
202 B
Bash

#!/bin/bash
# Yay telepítése
echo "Yay telepítése..."
git clone https://aur.archlinux.org/yay-bin.git
cd yay-bin
makepkg -si --noconfirm
cd ..
rm -rf yay-bin
echo "Yay telepítése befejeződött."