[dev][st] [PATCH] Fix output redirection in surf-open.sh

From: Alexander Sedov <alex0player_AT_gmail.com>
Date: Thu, 14 Mar 2013 07:13:35 +0400

Incorrect order of output rediection specifiers was causing useless
text appearing in terminal when starting surf-open (for example,
BadWindow error from xprop when tabbed window is already closed).
It isn't now.

---
 surf-open.sh |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/surf-open.sh b/surf-open.sh
index 29036f8..c22edc2 100755
--- a/surf-open.sh
+++ b/surf-open.sh
_AT_@ -21,12 +21,12 @@ then
 	runtabbed
 else
 	xid=$(cat "$xidfile")
-	xprop -id "$xid" 2>&1 >/dev/null
+	xprop -id "$xid" >/dev/null 2>&1
 	if [ $? -gt 0 ];
 	then
 		runtabbed
 	else
-		surf -e "$xid" "$uri" 2>&1 >/dev/null &
+		surf -e "$xid" "$uri" >/dev/null 2>&1 &
 	fi
 fi
 
-- 
1.7.10.4
Received on Thu Mar 14 2013 - 04:13:35 CET

This archive was generated by hypermail 2.3.0 : Thu Mar 14 2013 - 04:24:04 CET