📄 monitor
字号:
#!/bin/sh## Copyright (C) 2005 Anders Logg. # Licensed under the GNU LGPL Version 2.1. ## First added: 2005-12-13# Last changed: 2005-12-13# # Monitor memory usage for given command. This script# will probably only work on Linux.## Note that this script runs the given command as a new# process, so killing the script (ctrl-c) won't kill the# running process.exec $* &pid="$!"echo "Monitoring memory usage for process with id $pid..."PIDFILE="/proc/$pid/status"while [ 1 ]; do if [ -e $PIDFILE ]; then cat $PIDFILE | grep VmSize | awk '{ print $2/1024" MB"}' else exit 0 fi sleep 1done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -