diff options
Diffstat (limited to 'scripts/oe-gnome-terminal-phonehome')
-rwxr-xr-x | scripts/oe-gnome-terminal-phonehome | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/oe-gnome-terminal-phonehome b/scripts/oe-gnome-terminal-phonehome new file mode 100755 index 00000000000..e02354883a2 --- /dev/null +++ b/scripts/oe-gnome-terminal-phonehome @@ -0,0 +1,10 @@ +#!/bin/sh +# +# Gnome terminal won't tell us which PID a given command is run as +# or allow a single instance so we can't tell when it completes. +# This allows us to figure out the PID of the target so we can tell +# when its done. +# +echo $$ > $1 +shift +exec $@ |