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