13 lines
124 B
Bash
13 lines
124 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
|
||
|
|
||
|
xbps-install -Su
|
||
|
|
||
|
if [ $? = 0 ];then
|
||
|
echo "Success!"
|
||
|
|
||
|
elif [ $? = 1 ];then
|
||
|
echo "Nothing to see here"
|
||
|
fi
|