05 2017 档案

摘要:set mouse=aset numberset smartindentset expandtabset tabstop=4set shiftwidth=4set hlsearchset nocompatibleset backspace=indent,eol,startlet g:neocompl 阅读全文
posted @ 2017-05-11 00:33 君莫笑hhhhhh 阅读(227) 评论(0) 推荐(0)
摘要:备个份,慢慢写总结 1 first_fit 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 int main() 6 { 7 printf("This file doesn't demonstrate an a 阅读全文
posted @ 2017-05-09 18:38 君莫笑hhhhhh 阅读(993) 评论(0) 推荐(0)
摘要:#!/bin/bash apt-get update -y apt-get dist-upgrade -y apt-get install -y nmap vim build-essential gcc g++ netcat git curl wget python-dev openssl zip automake make libncurses5-dev aptitude tmux ... 阅读全文
posted @ 2017-05-07 13:32 君莫笑hhhhhh 阅读(313) 评论(0) 推荐(0)
摘要:注意pattern字符串前要加r 原始字符串 元字符 . 匹配除换行的任意字符 ^ 匹配开头 $ 匹配结尾 表示重复 星号 匹配0-多次 + 匹配1到多次 ? 匹配0次或1次 {m,n} 匹配m次至n次 后面跟一个?表示非贪婪匹配 [ab] 取一个(一般元字符在其中是普通字符) []中的元字符 -在 阅读全文
posted @ 2017-05-05 15:06 君莫笑hhhhhh 阅读(209) 评论(0) 推荐(0)