From 6ff6c00f977a5ae6290a605388844d10a9f14b20 Mon Sep 17 00:00:00 2001 From: brammeleman Date: Fri, 17 Jul 2015 23:32:26 +0200 Subject: [PATCH] use f3read/write in the same directory as log-f3wr --- log-f3wr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/log-f3wr b/log-f3wr index f462d2f..cf6ec90 100755 --- a/log-f3wr +++ b/log-f3wr @@ -1,5 +1,5 @@ #!/bin/bash LOG=$1 -f3write "${@:2}" 2>&1 | tee -a "${LOG}" && \ +$(dirname $0)/f3write "${@:2}" 2>&1 | tee -a "${LOG}" && \ echo -e "\n\n" >> "${LOG}" && \ -f3read "${@:2}" 2>&1 | tee -a "${LOG}" +$(dirname $0)/f3read "${@:2}" 2>&1 | tee -a "${LOG}"