diff --git a/lch b/lch
index ce955ee..0067165 100755
--- a/lch
+++ b/lch
@@ -1,5 +1,5 @@
 #!/usr/bin/env bash
-VERSION=0.6r7
+VERSION=0.6r8
 DEST=$1
 shift 1
 ORIG=$@
diff --git a/lib/compressor.sh b/lib/compressor.sh
index 49d9cef..96e433b 100644
--- a/lib/compressor.sh
+++ b/lib/compressor.sh
@@ -36,5 +36,5 @@ function compressor()
         ;;
     esac
 
-    echo -e "\nDone"
+    echo -e "\nFile $DEST compressed."
 }
\ No newline at end of file
diff --git a/lib/decompressor.sh b/lib/decompressor.sh
index b1258b1..6302289 100644
--- a/lib/decompressor.sh
+++ b/lib/decompressor.sh
@@ -36,5 +36,5 @@ function decompressor()
         ;;
     esac
     
-    echo -e "\nDone"
+    echo -e "\nFile $DEST decompressed."
 }
\ No newline at end of file
diff --git a/lib/resources.sh b/lib/resources.sh
index 78fe1df..73e296c 100644
--- a/lib/resources.sh
+++ b/lib/resources.sh
@@ -72,7 +72,7 @@ function executer()
     WPID=$!
     if [ -x "$(command -v $1)" ]
     then
-        "$@"
+        "$@" 1> /dev/null
     else
         error_not_install $1
     fi