Linux 命令搜索引擎

1 MIT 课程

官方链接:https://missing.csail.mit.edu/
国内链接:计算机教育中缺失的一课 · the missing semester of your cs education

# there is a dir called /sys
cd /sys         # kernel parameters of the system, from this to access kernel params through file system
cd /class       # many types of devices that can interact with or ...
cd /backlight/
cat brightness  # 1060
cat max_brightness
sudo su
echo 500 > brightness
echo 1060 | sudo tee brightness

1.1 Centos 安装 tldr

【Linux】Linux 命令快速学习神器 tldr、cheat 介绍和使用-腾讯云开发者社区-腾讯云

sudo yum install -y npm
sudo npm install -g tldr
which tldr     # 寻找 tldr 的位置
vim ~/.bashrc  # 环境变量注入
PATH=$PATH:/usr/local/bin/tldr

第一次使用,会等待一会下载数据。

cheat 和 tldr 类似的功能。