8 lines
100 B
Bash
Executable file
8 lines
100 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ "$#" -eq 0 ]]
|
|
then
|
|
exec /usr/bin/pikaur -Syu
|
|
else
|
|
exec /usr/bin/pikaur "$@"
|
|
fi
|