How can I put the current running process name into a GNOME Terminal tab title (or title bar when there's only one tab)?
-- UPDATE --
To clarify, I want the tab title to update when I run a process, for example:
# title is currently "bash"
$ find / -name foo # while searching for foo, title is "find"
$ # title is once again "bash"
$ less /proc/cpuinfo # title changes to "less"
$ man ls # title changes to man
$ # title returns to "bash"