From f4b9647e72c0f6942a18aca7d68a01e44fec3f5d Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Fri, 6 Apr 2001 03:14:36 +0000 Subject: [PATCH] tighten filter on touch(1) to account for recent changes in fileutils. --- 005 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/005 b/005 index 7aae4b1d..e98b4cd5 100755 --- a/005 +++ b/005 @@ -60,7 +60,10 @@ _cleanup() _touch() { - touch $@ 2>&1 | sed -e "s/creating \`//g" -e "s/'//g" + touch $@ 2>&1 | sed \ + -e "s/creating \`//g" \ + -e "s/setting times of \`//g" \ + -e "s/'//g" } # get standard environment, filters and checks -- 2.47.3