From 13a9142949e8ccb4b9816cf30bc34e2c82fe6267 Mon Sep 17 00:00:00 2001 From: boyska Date: Sun, 21 Aug 2011 17:43:32 +0200 Subject: [PATCH] FIX option_value problems with "strange" values --- src/tomb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tomb b/src/tomb index 901105c..76f0438 100755 --- a/src/tomb +++ b/src/tomb @@ -1188,7 +1188,7 @@ option_is_set() { } option_value() { #First argument, the option (something like "-s") - echo ${opts[$1]} + <<< ${opts[$1]} } main() {