From e2dcdf9ab59c73e91144dede66637587754f2730 Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Mon, 24 Nov 2008 04:43:27 +0000 Subject: [PATCH] (Change Version) Bug fix, caused extra line space in terminal. --- inxi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inxi b/inxi index 09c60ab..b494ec0 100755 --- a/inxi +++ b/inxi @@ -1,7 +1,7 @@ #!/bin/bash ######################################################################## #### Script Name: inxi -#### version: 0.7.0 +#### version: 0.7.1 #### Date: November 23 2008 ######################################################################## #### inxi is a fork of infobash 3.02, the original bash sys info script by locsmif @@ -357,7 +357,7 @@ print_screen_output() print_data="$( tr '\n' ' ' <<< "$print_data" )" dcop "$DCPORT" "$DCOPOBJ" say "$DCSERVER" "$DCTARGET" "$print_data" else - echo -e "$print_data\n" + echo -ne "$print_data\n" fi }