remove --no-heading, doesn't exist on Mac OS X
authorJohannes Weißl <jargon@molb.org>
Mon, 29 Nov 2010 11:13:49 +0000 (12:13 +0100)
committerJohannes Weißl <jargon@molb.org>
Mon, 29 Nov 2010 11:13:49 +0000 (12:13 +0100)
thanks to Christian Ebert <blacktrash@gmx.net> for reporting.

muttjump

index 436f8039d2ee07c0ecd506ca204deb89add34b52..c6453ebdfa395a1cefd7c0ae8390219445a6cadd 100755 (executable)
--- a/muttjump
+++ b/muttjump
@@ -143,7 +143,7 @@ if [ "$MUTTJUMP_USE_SCREEN" = no ] ; then
     # mutt behaves different if STDIN is no terminal
     # TODO: Find cleaner solution (e.g. mutt command-line argument?)
     exec 0<&-
-    term="/dev/$(ps -p$$ --no-heading | awk '{print $2}')"
+    term="/dev/$(ps -p$$ | awk 'END { print $2 }')"
     exec < $term
 
     # start mutt, open original folder and jump to the original message

Benjamin Mako Hill || Want to submit a patch?