sh Bash进程脚本捕获最佳正常运行时间和ps

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash进程脚本捕获最佳正常运行时间和ps相关的知识,希望对你有一定的参考价值。

#!/bin/bash
# Name: Mark Henes
# Date: 10-18-15
# Purpose: Capture top, uptime, and ps results.
###
#function name {
#
#}
function top_func {
    top
}
function uptime_func {
    uptime
}
function ps_func {
    ps xua
}
###
# OUTPUT
###
# Uncomment hashtag to write to file. Change function to output different format.
top_func #> top.txt
uptime_func #> uptime.txt
ps_func #> ps.txt
###
# Call this script from another script by the following examples:
# bash processes.sh
# /bin/bash /path/to/script
###
# End
exit

以上是关于sh Bash进程脚本捕获最佳正常运行时间和ps的主要内容,如果未能解决你的问题,请参考以下文章

sh Bash - 进程脚本 - 捕获top,uptime和ps。

Linux Shell脚本的执行过程

Shell脚本入门 07:进程与信号

Shell脚本入门 07:进程与信号

python子进程不捕获pv命令的stderr

捕获信号时如何正确等待bash子进程完成