Compare commits

..

No commits in common. "e878686e46f0624dc2a2c060318399fdd4f0e859" and "37069b07c1e57ef088963b11a96791cd97773672" have entirely different histories.

8 changed files with 5 additions and 49 deletions

View File

@ -2,7 +2,7 @@
---
## INDEX
## 目录
- [文件操作](#文件操作)
- [打包压缩](#打包压缩)
@ -43,10 +43,6 @@
- [which](#which):查找命令
- [whoami](#whoami)
- [uname](#uname):系统内核版本等信息
- [objdump](../../program/tool/objdump)
- [INDEX](#INDEX)
---
@ -58,9 +54,6 @@
- [tar](#tar)
- [dd](#dd)
- [INDEX](#INDEX)
---
## 磁盘
@ -73,9 +66,6 @@
- [smartctl](#smartctl):查看smart参数
- [parted](#parted)
- [INDEX](#INDEX)
---
## 用户
@ -90,9 +80,6 @@
- [newgrp](#newgrp):切换有效用户组
- [last](#last) : 查看用户登陆记录
- [INDEX](#INDEX)
---
## 进程
@ -109,9 +96,6 @@
- [jobs](#jobs)
- [ulimit](#ulimit)
- [INDEX](#INDEX)
---
## 网络
@ -123,30 +107,20 @@
- [wget](#wget)
- [NetworkManager](#networkmanager)
- [INDEX](#INDEX)
---
## 系统
- [systemctl](#systemctl)
- [perf](../../program/tool/perf.md)
- [dmidecode](#dmidecode)
- [dpkg](#dpkg)
- [apt](#apt)
- [编解码工具](#编解码工具)
- [INDEX](#INDEX)
---
## 其他
- [INDEX](#INDEX)
---
### pwd

View File

@ -125,4 +125,5 @@ if ! shopt -oq posix; then
fi
# 终端启动时显示消息
echo -e "\e[1;34m$(date +'%A, %B %d %Y %H:%M:%S')\e[0m"
echo -e "\e[1;32mWelcome to My Linux, \e[1;35m$USER!\e[0m"

View File

@ -1,14 +0,0 @@
# LIBRARY
---
## INDEX
- [C](#C)
- [CPP](#CPP)
- [SELF](#SELF)
- [offsetof](./self/offsetof.h)
- [string hash](./self/string_hash.c)
- [thread pool](./self/thread-pool.cpp)
---

View File

@ -1,7 +1,6 @@
objdump
-f 显示文件头
-h 显示段(section)信息
-x 文件头和信息
-d 反汇编可执行段
-D 反汇编所有
-t 显示符号表

View File

@ -1,6 +1,8 @@
syntax on
set number "显示行号
"set rnu "相对行号
set ts=4
set expandtab "tab to space
set autoindent "自动缩进
set encoding=utf-8 "使用utf-8字符编码
set fileencoding=utf-8
@ -14,12 +16,6 @@ set incsearch "搜索模式下,每输入一个字符,就跳到对应
set ignorecase "忽略搜索大小写
set tags=./tags;,tags "表示从当前文件所在的目录开始查找 tags 文件,如果没有,则向上递归查找
"Tab and Space
set expandtab "tab to space
set ts=4
set softtabstop=4 " 编辑时退格键删除的空格数
set shiftwidth=4 " 自动缩进使用的空格数
"缓冲区操作
nnoremap <space>b :buffers<cr>:b<space>
nnoremap <space>e :b#<cr>
@ -64,7 +60,7 @@ inoremap · `
"自动补全
inoremap jl <c-x><c-l>
inoremap jnf <c-x><c-f>
inoremap jbf <c-x><c-f>
inoremap jk <c-x><c-k>
" 启用字典补全Ctrl-X Ctrl-K