Files
Hollow ManandGitHub c25dbd9a1f Arthas cat 命令教程 (#1319)
* add cat command scenario. #847

Signed-off-by: hollowman6 <hollowman186@vip.qq.com>

* fix link typo

Signed-off-by: hollowman6 <hollowman186@vip.qq.com>

* polish cat command scenario. #847

Signed-off-by: hollowman6 <hollowman186@vip.qq.com>
2020-07-23 14:32:29 +08:00

11 lines
267 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
首先向`/tmp/a.txt`文件中写入`hello, world`
`echo "hello, world" > /tmp/a.txt`{{execute T2}}
通过`cat`命令可以打印文件内容,和linux里的cat命令类似。
`cat /tmp/a.txt`{{execute T2}}
你可以看到`hello, world`被打印了出来。