From be425ed76ceb95caa6536692ceebba6ea7e2b96e Mon Sep 17 00:00:00 2001 From: Matthew Date: Tue, 2 May 2017 20:03:07 +0930 Subject: [PATCH] shred_file() outputs warning message to stderr. (#192) --- bin/_blackbox_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/_blackbox_common.sh b/bin/_blackbox_common.sh index 6ee410c..3249599 100755 --- a/bin/_blackbox_common.sh +++ b/bin/_blackbox_common.sh @@ -281,7 +281,7 @@ function shred_file() { CMD=rm OPT=-Pf else - echo "shred_file: WARNING: No secure deletion utility (shred or srm) present; using insecure rm" + echo "shred_file: WARNING: No secure deletion utility (shred or srm) present; using insecure rm" >&2 CMD=rm OPT=-f fi