From 168164a7e9df6d76f9c85bd67047c209ae8c6872 Mon Sep 17 00:00:00 2001 From: Lilian Besson Date: Wed, 9 Aug 2017 01:35:59 +0200 Subject: [PATCH] Force quiet rm of tmp_file On my bash, and many others, rm is aliases to 'rm -vi' for safety reason, and there is no way to force rm to be quiet except to use '/bin/rm' explicitly. --- bin/qfc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/qfc.sh b/bin/qfc.sh index ac9cce3..fc14b0f 100755 --- a/bin/qfc.sh +++ b/bin/qfc.sh @@ -45,7 +45,7 @@ if [[ -n "$ZSH_VERSION" ]]; then tmp_file=$(mktemp -t qfc.XXXXXXX)