. - 当前目录.. - 父目录~ - 家目录/ - 根目录755 = rwxr-xr-x644 = rw-r--r--
# 实用技巧:管道和重定向
## 管道 |
```bash
# 将前一个命令输出传给后一个
ls -l | grep ".txt"
cat file.txt | wc -l # 统计行数
ps aux | grep python # 查找进程
history | grep git # 搜索历史命令
# 多个管道连接
cat access.log | grep "ERROR" | wc -l