Linux
文章平均质量分 81
changan2001
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux下grep使用详细介绍
1. grep简介grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。Unix的grep家族包 括grep、egrep和fgrep。egrep和fgrep的命令只跟grep有转载 2010-01-18 16:04:00 · 503 阅读 · 0 评论 -
GNU gprof
http://www.cs.utah.edu/dept/old/texinfo/as/gprof.htmlGNU gprofThis manual describes the GNU profiler, gprof, and how you can use it to determine which parts of a program are taking most of the转载 2010-05-17 10:23:00 · 643 阅读 · 0 评论 -
无密码验证ssh连接设置
Linux环境下常用到的一个设置,很实用.服务器A和B:在A上运行: ssh-keygen -t rsa全都直接回车,接受默认选项,最后产生两个文件:~/.ssh/{id_rsa id_rsa.pub}登陆到B上: 将A上的id_rsa.pub内容添加到 B:~/.ssh/authorized_keys这个文件中的就可以了,如果没有这个文件,可以直原创 2011-11-21 10:55:01 · 590 阅读 · 0 评论 -
#分享资料#—《UNIX TOOLBOX》
介绍:This document is a collection of Unix/Linux/BSD commands and tasks which are useful for IT work or for advanced users. This is a practical guide with concise explanations, however the reader is转载 2012-08-17 12:39:13 · 865 阅读 · 0 评论 -
Bash Shell字符串操作小结
1. 取长度1str="abcd"2expr length $str # 43echo ${#str} # 44expr "$str" : ".*" # 4转载 2013-04-03 10:39:28 · 1539 阅读 · 0 评论 -
Linux下用gcc/g++生成静态库和动态库(Z)
Linux下用gcc/g++生成静态库和动态库(Z) 在 linux 下,库文件一般放在 /usr/lib 和 /lib 下,静态库的名字一般为 libxxxx.a ,其中 xxxx 是该 lib 的名称动态库的名字一般为 libxxxx.so.major.minor , xxxx 是该 lib 的名称, major 是主版本号, minor 是副版本号转载 2013-10-23 10:55:47 · 2156 阅读 · 0 评论
分享