aboutsummaryrefslogtreecommitdiffstats
path: root/unix/waiton.sh
diff options
context:
space:
mode:
Diffstat (limited to 'unix/waiton.sh')
-rwxr-xr-xunix/waiton.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/waiton.sh b/unix/waiton.sh
index 67d88ac..988d3d3 100755
--- a/unix/waiton.sh
+++ b/unix/waiton.sh
@@ -14,13 +14,13 @@ case "$1" in
esac
pid="$1"
-me="${0##*/}($$)"
-name=$(ps -p ${pid} -o comm=)
+me="${0##*/} (pid=$$)"
+name=$(ps -p ${pid} -o args=)
if [ $? -eq 0 ]; then
- echo "${me}: waiting for process (${pid}, ${name}) to finish ..."
+ echo "${me}: waiting for process (pid=${pid}, ${name}) to finish ..."
while ps -p ${pid} >/dev/null 2>&1; do
echo -n .
- sleep 1
+ sleep 3
done
echo
else