#!/bin/bash
num=15
if [ $num -gt 10 ]; then
    echo "$num 大于 10"
else
    echo "$num 小于等于 10"
fi