Linux_scriptek/yay.sh

10 lines
202 B
Bash
Raw Permalink Normal View History

2024-12-21 12:46:26 +00:00
#!/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."