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.
25 lines
459 B
Plaintext
25 lines
459 B
Plaintext
tee
|
|
===
|
|
|
|
> Similar to the traditional `tee` command.
|
|
|
|
|
|
```
|
|
USAGE:
|
|
tee [-a] [-h] [file]
|
|
|
|
SUMMARY:
|
|
tee command for pipes.
|
|
|
|
EXAMPLES:
|
|
sysprop | tee /path/to/logfile | grep java
|
|
sysprop | tee -a /path/to/logfile | grep java
|
|
|
|
WIKI:
|
|
https://alibaba.github.io/arthas/tee
|
|
|
|
OPTIONS:
|
|
-a, --append Append to file
|
|
-h, --help this help
|
|
<file> File path
|
|
``` |