mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
269 B
Markdown
11 lines
269 B
Markdown
5 years ago
|
|
||
|
First write `hello, world` into `/tmp/a.txt`:
|
||
|
|
||
|
`echo "hello, world" > /tmp/a.txt`{{execute T2}}
|
||
|
|
||
|
Use `cat` to concatenate and print files, which is pretty much alike in linux.
|
||
|
|
||
|
`cat /tmp/a.txt`{{execute T2}}
|
||
|
|
||
|
Then you can see that `hello, world` has been printed out.
|