$ ./running
Usage: ./running <program-name>
./running <part of program name>
Examples: ./running firefox
./running term # part of program name
./running dbus
./running 'dbus-daemon --session' # words with quotes
./running -v term # verbose output
./running -s term # strace checks activity
如果您想轻松访问它,可以将 shellscript 安装running到一个目录中。PATH
脚本代码
#!/bin/bash
# date sign comment
# 2019-02-14 sudodus version 1.0
verbose=false
strace=false
if [ "$1" == "-v" ]
then
verbose=true
shift
fi
if [ "$1" == "-s" ]
then
strace=true
shift
fi
if [ $# -ne 1 ]
then
echo "Usage: $0 <program-name>
$0 <part of program name>
Examples: $0 firefox
$0 term # part of program name
$0 dbus
$0 'dbus-daemon --session' # words with quotes
$0 -v term # verbose output
$0 -s term # strace checks activity"
exit
fi
inversvid="\0033[7m"
resetvid="\0033[0m"
redback="\0033[1;37;41m"
greenback="\0033[1;37;42m"
blueback="\0033[1;37;44m"
runn=false
#tmpfil=$(mktemp)
tmpdir=$(mktemp -d)
tmpfil="$tmpdir/tmpfil"
vtfile="$tmpdir/vtfile"
vthead="$tmpdir/vthead"
# check by systemctl
systemctl is-active --quiet "$1"
if [ $? -eq 0 ]
then
echo "systemctl is-active:"
runn=true
fi
# check by ps
ps -ef | tr -s ' ' ' ' | cut -d ' ' -f 8- | grep "$1" | grep -vE -e "$0 *$1" -e "$0 *.* *$1" -e "grep $1" | sort -u > "$tmpfil"
#cat "$tmpfil"
if $verbose || $strace
then
ps -ef |head -n1 > "$vthead"
ps -ef | grep "$1" | grep -vE -e "$0 *.* *$1" -e "grep $1" | sort -u > "$vtfile"
fi
tmpstr=$(head -n1 "$tmpfil")
#echo "tmpstr=$tmpstr"
tmpess=$(grep -om1 "$1" "$tmpfil")
#echo "tmpess=$tmpess"
if [ "$tmpstr" == "$1" ] || [ "${tmpstr##*/}" == "$1" ] || [ "${1##*/}" == "${0##*/}" ] || [ "$tmpess" == "$1" ]
then
echo "ps -ef: active:"
runn=true
if $verbose
then
cat "$vthead" "$vtfile"
fi
elif test -s "$tmpfil"
then
if $runn
then
echo "----- consider also ------------------------------------------------------------"
if $verbose
then
cat "$vthead" "$vtfile"
else
cat "$tmpfil"
fi
echo "--------------------------------------------------------------------------------"
else
echo "----- try with: ----------------------------------------------------------------"
if $verbose
then
cat "$vthead" "$vtfile"
else
cat "$tmpfil"
fi
echo "--------------------------------------------------------------------------------"
fi
fi
if $runn
then
echo -en "$greenback '$1"
if [ "$tmpstr" != "$tmpess" ]
then
echo -n " ..."
fi
echo -e "' is running $resetvid"
if $strace
then
which xterm
if [ $? -eq 0 ]
then
pid=$(head -n1 "$vtfile" | sed 's/^ *//' | tr -s ' ' '\t' | cut -f 2)
echo "checking pid=$pid; quit with 'ctrl + c' in the xterm window"
xterm -title "'strace' checks '$1'" 2> /dev/null -e sudo strace -f -p $pid
else
echo "Please install 'xterm' for this function to work"
exit
fi
fi
else
inpath=$(which "$1")
if [ "$inpath" == "" ]
then
echo -e "$redback no path found to '$1' $resetvid"
else
echo -e "$blueback '$1' is not running $resetvid"
fi
fi
rm -r "$tmpdir"
mp@ubuntu:~$ sleep 30 # a program that is not reading from the terminal
^Z
[1]+ Stopped sleep 30
mp@ubuntu:~$ bg
[1]+ sleep 30 &
mp@ubuntu:~$
mp@ubuntu:~$
mp@ubuntu:~$ cat - # a program that is reading from the terminal
^Z
[1]+ Stopped cat -
mp@ubuntu:~$ bg
[1]+ cat - &
mp@ubuntu:~$
[1]+ Stopped cat -
mp@ubuntu:~$ jobs -l
[1]+ 3503 Stopped (tty input) cat -
mp@ubuntu:~$ fg
cat -
hi
hi
有几种方法:
尝试发出输入结束信号:没有超级用户权限,很难知道幕后发生了什么。可以做的是按Ctrl+ d。规范模式下的终端和实用程序在接收到绑定到此组合键的 EOT 信号时将所有可用文本发送到
read()
系统调用,如果没有输入 -read()
返回大多数实用程序接受的负退出状态作为退出信号。因此,如果实用程序正在等待输入,它将在收到组合键后退出。否则,该实用程序要么正在运行任务,要么没有正确编写。监视系统调用:如果您确实具有超级用户权限,则可以
strace
在另一个终端中运行以查看当前正在执行的操作。为此,您需要找出程序的PID。例如,在另一个终端选项卡中运行pgrep -f firefox
可能 1234 作为示例,然后sudo strace -f -p 1234
. 如果您看到的输出卡在read()
系统调用上,则意味着该命令可能正在等待输入。否则,如果您看到系统调用正在运行,那么命令正在执行其他操作。请参阅相关问题以strace
了解是否已退出长时间运行的命令。使用命令自己的方法:除其他外,诸如
dd
使用信号之类的实用程序。例如,如果您使用kill -USR1 1234
(其中 1234 是运行dd
命令的 PID),它将打印到标准输出当前处理的字节数。当然,这需要首先了解命令的这种行为。上述两种方法更通用,并且不需要深入了解每个命令的行为(尽管最好知道您实际执行的是什么 - 否则您可能会运行可能造成损坏的命令)。如何判断程序是否正在运行或需要用户输入
这取决于程序以及您如何调用它。
通常但并非总是会出现提示,表明程序正在请求输入。
如果不确定,可以检查程序的进程是否忙
使用 CPU - 使用
top
或htop
读取或写入 - 使用
sudo iotop -o
当程序完成后,您将看到 shell 的提示符。
脚本
running
我有一个 shellscript 可以检查程序是否正在运行,现在我添加了在找到 ... 时
-s
使其运行的选项sudo strace -f -p <PID>
(根据 Sergiy Kolodyaznyy 的回答)。shellscript 使用
ps -ef
找到大多数程序systemctl is-active --quiet
找一些节目如果你想
strace
在一个xterm
窗口。xterm
如果您想用来strace
观看程序的活动,请安装。用法
如果您想轻松访问它,可以将 shellscript 安装
running
到一个目录中。PATH
脚本代码
演示
检查 Lubuntu 中的终端窗口(LXTerminal 启动为
x-terminal-emulator
自定义gnome-terminal
窗口),只要光标在终端窗口中,就会有很多活动。
开始
grep
(等待输入/dev/stdin
)检查它
没有太多活动,您可以确定正在发生的事情。
如果您在终端中运行 shell,例如终端仿真器或典型的 ssh 会话,那么您的 shell 几乎肯定启用了作业控制。在大多数情况下,这使得获得问题的答案变得非常容易。
键入Ctrl+Z以暂停该进程,然后
bg
在后台继续它,然后在 shell 中键入一个空行,以便它检查程序是否被信号停止。如果进程试图从终端读取,它将立即收到
SIGTTIN
信号并暂停。(启用作业控制时,系统一次只允许一个进程从终端读取。)shell 会报告这一点。然后,您可以键入fg
以在前台继续该过程,然后键入要由程序正常读取的输入。某些程序(例如编辑器)将捕获或忽略由终端生成的信号,Ctrl+Z或者将终端置于控制字符甚至不生成信号的模式。在这种情况下,您需要使用更高级的技术,例如使用
strace
来查看进程是否正在执行read
、select
、poll
等。不确定您是否仍然需要这个,但仍然需要知道一个有用的技巧:如果程序似乎退出而没有任何输出,您可以通过执行检查它是否在后台运行
干杯!
为什么不简单地看一下 top 命令的列 S(状态)。如果您的程序正在等待输入,则很有可能它正在休眠且未运行,这意味着 top 将输出 S(这次休眠)而不是 R(运行)。试试这个命令作为例子:
top -b -n 1 | sed -n '7,12p' | awk '{printf "%6s %-10s %-4s %-s\n",$1,$2,$8,$NF}'