摘要:
linux中df命令的功能是用来检查linux服务器的文件系统的磁盘空间占用情况。可以利用该命令来获取硬盘被占用了多少空间,目前还剩下多少空间等信息。 Usage: df [OPTION]... [FILE]...Show information about the file system on w 阅读全文
摘要:
du命令 一、du的功能 `du` reports the amount of disk space used by the specified files and for each subdirectory (of directory arguments). with no arguments,` 阅读全文
摘要:
什么是高通量测序 高通量测序技术(High-throughput sequencing,HTS)是对传统Sanger测序(称为一代测序技术)革命性的改变, 一次对几十万到几百万条核酸分子进行序列测定, 因此在有些文献中称其为下一代测序技术(next generation sequencing,NGS )足见其划时代的改变, 同时高通量测序使得对一个物种的转录组和基因组进行细致全貌的分析成为可... 阅读全文
摘要:
os.path — Common pathname manipulations操作 This module implements some useful functions on pathnames. To read or write files see open(), and for access 阅读全文
摘要:
一、find 命令格式 1、find命令的一般形式为; find pathname -options [-print -exec -ok ...] 2、find命令的参数; pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。 -print: find命令 阅读全文
摘要:
1. 命令行输入mail 2. 删除邮件 d 删除当前邮件,指针下移; d 1 删除标号为1的邮件; d 2-4 删除标号2到4的邮件; 3. 保存 q 退出mail命令平台,保存之前的操作,比如删除已用d删除的邮件,已阅读邮件会转存到当前用户家目录下的mbox文件中。如果在mbox中删除文件才会彻 阅读全文
摘要:
1 文件默认权限 对于目录,默认权限=777-umask 对于文件,默认权限=666-umask(文件默认无执行权限) 默认权限修改: 阅读全文
摘要:
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 )) 阅读全文