使⽤ grep 命令获取 /etc/passwd 中的 root ⽤户所在⾏的内容
时间: 2024-01-11 15:05:20 浏览: 241
linux文本过滤grep基础命令介绍(5)
您可以使用以下命令来获取 `/etc/passwd` 文件中 `root` 用户所在行的内容:
```
grep '^root:' /etc/passwd
```
其中,`^root:` 表示以 `root:` 开头的行,`/etc/passwd` 是要搜索的文件路径。这个命令会输出包含 `root` 用户信息的一行内容,例如:
```
root:x:0:0:root:/root:/bin/bash
```
阅读全文