Skip to content

Commit ab08b7f

Browse files
committed
first commit
0 parents  commit ab08b7f

247 files changed

Lines changed: 9226 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

AngularJS 中文版 - v1.0.pdf

3.26 MB
Binary file not shown.

Axure RP 指南 - v1.1.pdf

15.7 MB
Binary file not shown.
1.76 MB
Binary file not shown.

Git 教程 - v1.0.pdf

1.96 MB
Binary file not shown.
3.74 MB
Binary file not shown.

Gradle 实战中文版 - v1.0.pdf

3.72 MB
Binary file not shown.

Hibernate 教程 - v1.0.pdf

1.41 MB
Binary file not shown.
33.7 MB
Binary file not shown.
15.7 MB
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Bash 其他常用命令
2+
3+
## 其他常用命令
4+
5+
- 编辑 hosts 文件:`vim /etc/hosts`,添加内容格式:`127.0.0.1 www.youmeek.com`
6+
- RPM 文件操作命令:
7+
- 安装
8+
- `rpm -i example.rpm`,安装 example.rpm 包
9+
- `rpm -iv example.rpm`,安装 example.rpm 包并在安装过程中显示正在安装的文件信息
10+
- `rpm -ivh example.rpm`,安装 example.rpm 包并在安装过程中显示正在安装的文件信息及安装进度
11+
- 查询
12+
- `rpm -qa | grep jdk`,查看 jdk 是否被安装
13+
- 卸载
14+
- `rpm -e jdk`,卸载 jdk(一般卸载的时候都要先用 rpm -qa 看下整个软件的全名)
15+
- 查看某个配置文件,排除掉里面以 # 开头的注释内容:
16+
- `grep '^[^#]' /etc/openvpn/server.conf`
17+
- 查看某个配置文件,排除掉里面以 # 开头和 ; 开头的注释内容:
18+
- `grep '^[^#;]' /etc/openvpn/server.conf`
19+
20+
## 资料
21+
22+

0 commit comments

Comments
 (0)