shell 总结

i = `expr $i  + 1`  //in this case,把 i  作为数字,即使这样定义 i,i = '1'

i = `expr $i+1` //in this case,把i当做字符,直接就与后面连接起来

猜你喜欢

转载自blog.csdn.net/qq_24328911/article/details/81410185