jitty-scripts/status-test.sh

13 lines
124 B
Bash
Raw Permalink Normal View History

2015-08-08 21:04:55 -07:00
#!/bin/bash
xbps-install -Su
if [ $? = 0 ];then
echo "Success!"
elif [ $? = 1 ];then
echo "Nothing to see here"
fi