码迷,mamicode.com
首页 >  
搜索关键字:cat head tail nl    ( 59491个结果
Linux大棚版vimrc配置
Linux大棚版vimrc配置—V2.0版本,如下: [shell] $cat .vimrc “== “Author :roc “Website:roclinux.cn “Version:2.0 “== “vim支持go语言 - 开始 “关闭文件类型检测功...
分类:系统相关   时间:2014-05-19 21:45:21    阅读次数:496
js在mootools框架下的new Class
首先,在HTML文件中引入mootools.js、 mootools-more.js、mootools-core.js,然后就能使用mootools封装的一些特性。几乎类似于面向对象。mootools使用如下形式构建对象:1 var Cat = new Class(2 {3 initia...
分类:Web程序   时间:2014-05-19 20:25:36    阅读次数:429
ExpectationMaximum
2- You may have question marks in your head, especially regarding where the probabilities in the Expectation step come from. Please have a look at the...
分类:其他好文   时间:2014-05-19 11:47:33    阅读次数:312
Leetcode | Remove Nth Node From End of List
Given a linked list, remove the nth node from the end of list and return its head.For example,Given linked list: 1->2->3->4->5, and n = 2.After removi...
分类:其他好文   时间:2014-05-19 09:16:49    阅读次数:247
HTML小实例:通过PHP调用C++
一、在本地服务器目录下新建一个test文件夹,在此文件夹中新建文件:1.cpp.html<!DOCTYPEhtml> <html> <head> <title>C++测试</title> </head> <body> <formmethod="post"action="cpp.php"> <div> <p>请测试文字..
分类:编程语言   时间:2014-05-16 02:10:17    阅读次数:329
开始在这里记录在jd的点滴成长~~~
开始在这里记录在jd的点滴成长~~~3月20日入职,距离今天两个月还差5天,不过这段时间完成的东西还真不少,学习了很多的linux命令和Axure产品设计,比如:awk神器、sed、sort、head、tail、find、xargs、grep等等,收获很大~~~其中到今天为止已经完成了一个功能非常强...
分类:其他好文   时间:2014-05-16 01:03:10    阅读次数:314
单链表的排序 快速排序 归并排序 quicksort mergesort
原理都很简单,关键是某些边界能否正确写对: #include #include using namespace std; class Node { public: int val; Node* next; Node(int val = 0):val(val),next(NULL){ } }; Node* quicksort(Node* head, Node* tai...
分类:其他好文   时间:2014-05-15 20:27:36    阅读次数:296
删除大量小文件
FreeBSD删除文件缓存,在负载方面FreeBSD比CentOS好很多很多。#!/bin/sh if[!-s/tmp/dir.dat];then find/home/www/web/cache-typed>/tmp/dir.dat fi mkdir/var/tmpdir DIRS=`cat/tmp/dir.dat` foriin$DIRS do load=$(top-n1|awk-F‘[.]+‘‘/averages/{print$6}‘) #rsync--delet..
分类:其他好文   时间:2014-05-15 18:51:06    阅读次数:314
oracle表连接之----〉嵌套循环(Nested Loops Join)
oracle表连接之嵌套循环(Nested Loops Join)...
分类:数据库   时间:2014-05-15 18:38:23    阅读次数:539
检测一个document是否存在(checking whether a document exists)
如果你仅仅是要检查一个document是否存在,而对document的内容不感兴趣,你可以使用HEAD进行查询curl -i -XHEAD /website/blog/123如果document存在将会返回如下数据:HTTP/1.1200 OKContent-Type: text/plain; ch...
分类:其他好文   时间:2014-05-15 17:07:40    阅读次数:293
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!