- 论坛徽章:
- 1
|
需要将sar命令的结果实时的输出到文件中
- sunma2-bash-2.03# export MANPATH=$MANPATH:/usr/local/man
- sunma2-bash-2.03# man seq
- Reformatting page. Please Wait... done
- User Commands SEQ(1)
- NAME
- seq - print a sequence of numbers
- SYNOPSIS
- seq [OPTION]... LAST
- seq [OPTION]... FIRST LAST
- seq [OPTION]... FIRST INCREMENT LAST
- DESCRIPTION
- Print numbers from FIRST to LAST, in steps of INCREMENT.
- -f, --format=FORMAT
- use printf style floating-point FORMAT (default: %g)
- -s, --separator=STRING
- use STRING to separate numbers (default: \n)
- -w, --equal-width
- equalize width by padding with leading zeroes
复制代码 |
|