Files
svr/usr/bin/aur
T

12 lines
177 B
Bash
Raw Normal View History

2026-01-23 08:55:18 +01:00
#!/bin/bash
aur ()
{
2026-02-23 18:27:06 +01:00
DIR=~/tmp
echo "note: ceci est un script maison"
mkdir $DIR
git clone https://aur.archlinux.org/$1.git $DIR/$1
cd $DIR/$1
makepkg -si
2026-01-23 08:55:18 +01:00
}
aur "$@"