14 lines
145 B
Bash
14 lines
145 B
Bash
#!/bin/bash
|
||
|
||
judgeOK(){
|
||
if [ $? -eq 0 ]
|
||
then
|
||
echo "success"
|
||
else
|
||
echo "fail"
|
||
fi
|
||
}
|
||
|
||
apt install asdxzcf
|
||
judgeOK
|