shell脚本中判断$lsb_dist如果是ugreen就改为debian
你可以使用if语句来判断"$lsb_dist"的值是否为"ugreen",然后使用赋值语句将其改为"debian"。以下是一个示例的shell脚本:
if [ "$lsb_dist" = "ugreen" ]; then
lsb_dist="debian"
fi
在上述脚本中,如果"$lsb_dist"的值等于"ugreen",则将其改为"debian"。你可以根据需要将这段代码插入到你的shell脚本中的适当位置。
原文地址: https://www.cveoy.top/t/topic/ijGR 著作权归作者所有。请勿转载和采集!