码迷,mamicode.com
首页 >  
搜索关键字:commands    ( 1138个结果
awk基本使用
awk命令的格式:awk[options]‘awk-script‘input-file...options:-F:指定Fieldseparator域分隔符-f:指定awk-script文件名awk-script:指定awk命令input-file:指定awk输入文件awk-script的结构:由BEGIN,body,END三部分组成BEGIN格式:BEGIN{awk-commands}用于打印表头初始化变量..
分类:其他好文   时间:2014-09-16 16:11:21    阅读次数:208
Android 的 init.rc 文件简介
init.rc由许多的Action和Service组成。每一个语句占据一行,并且各个关键字被空格分开.由 # (前面允许有空格)开始的行都是注释行(comment)一个actions 或 services 的开始隐含声明了一个新的段,所有commands 或 options 属于最近的声明。在第一个...
分类:移动开发   时间:2014-09-16 12:27:50    阅读次数:236
sed基本使用
sed[options]sed-commandsinput-fileoptions:-n:静默模式,不输出模式空间中的内容-escript–escript:指定多个脚本命令-fscript_file:指定脚本文件-i:直接编辑原文件-r:使用扩展的正则表达式sed-commands:d:删除p:打印i\text:在模式匹配行的前面插入a\text:在模式匹配行的后?.
分类:其他好文   时间:2014-09-15 19:38:50    阅读次数:173
python子进程模块subprocess详解与应用实例 之一
subprocess--子进程管理器? 一、subprocess 模块简介 subprocess最早是在2.4版本中引入的。 subprocess模块用来生成子进程,并可以通过管道连接它们的输入/输出/错误,以及获得它们的返回值。 它用来代替多个旧模块和函数: os.system os.spawn* os.popen* popen2.* commands.* 关于这个模...
分类:编程语言   时间:2014-09-09 12:37:38    阅读次数:284
Linux -- top (man)
TOP(1) User Commands TOP(1)NAME top - display Linux processesSYNOPSIS top -hv|-bcHiOSs -d secs -n max -u|U user -p pid -o fld -w [cols] The traditiona...
分类:系统相关   时间:2014-09-06 09:42:13    阅读次数:517
Linux -- crontab
*manpages*File: *manpages*, Node: crontab, Up: (dir)CRONTAB(1) General Commands Manual CRONTAB(1)NAME crontab - maintain crontab files for individual ...
分类:系统相关   时间:2014-09-04 22:10:50    阅读次数:488
Find the Top 10 commands in your linux box!
history | awk '{print $2;}' | grep -v '^./' | sort -d | uniq -c | sort -nr | head -n 10grep, '-v' means invert-match,'^' specify the begin of a line.s...
分类:系统相关   时间:2014-09-04 18:40:19    阅读次数:231
Linux -- chmod
CHMOD(1) User Commands CHMOD(1)NAME chmod - change file mode bitsSYNOPSIS chmod [OPTION]... MODE[,MODE]... FILE... chmod [OPTION]... OCTAL-MODE FILE.....
分类:系统相关   时间:2014-09-03 23:58:17    阅读次数:651
Linux -- chown
CHOWN(1) User Commands CHOWN(1)NAME chown - change file owner and groupSYNOPSIS chown [OPTION]... [OWNER][:[GROUP]] FILE... chown [OPTION]... --refere...
分类:系统相关   时间:2014-09-03 23:55:37    阅读次数:389
Linux -- id
ID(1) User Commands ID(1)NAME id - print real and effective user and group IDsSYNOPSIS id [OPTION]... [USERNAME]DESCRIPTION Print user and group infor...
分类:系统相关   时间:2014-09-03 16:36:46    阅读次数:316
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!