摘要:
This module generates temporary files and directories. It works on all supported platforms.In version 2.3 of Python, this module was overhauled重写 for 阅读全文
摘要:
1 for命令 1.1 读取列表中的值 1.2 读取列表中复杂的值 1.3 从变量中读取列表 1.4 从命令读取值 1.5 更改字段分隔符 1.6 用通配符读取文件/目录 阅读全文
摘要:
我所知道的,bash中,目前有五种方法:1. i=`expr $i + 1`;2. let i+=1;3. (( i++ ));4. i=$[ $i+1 ];5. i=$(( $i + 1 )) 阅读全文