shell
十四木
这个作者很懒,什么都没留下…
展开
-
C++之静态链表添加
#include <iostream> #include <unistd.h> using namespace std; class Node { private: int num; static Node *head; Node *next; public: Node(int num); //~Node(); static void printList(); static void deleteList(); }; Node *Node::head = NULL;原创 2020-09-03 19:53:59 · 176 阅读 · 0 评论 -
shell正则表达式
正则表达式 在Linux中,我们查找文件中的字符串一般会用grep。但我们不可能记住所有的东西,用邮箱来举例,我们记不住别人的邮箱,但我们一眼就能看出这是不是邮箱,要从一段话中找出哪些句子是邮箱,就可以使用正则表达式帮我们筛选。 规定一些特殊语法表示字符类、数量限定符和位置关系,然后用这些特殊语法和普通字符一起表示一个模式,这就是 正则表达式。 grep的正则表达式有Basic和Extended egrep相当于grep -E,表示采用Extended正则表达式语法。 fgrep相当于grep -F,表示只原创 2020-08-31 19:38:39 · 162 阅读 · 0 评论