From c7985b76c5174c4c224b67e29dd554443f80f47e Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 17 Jun 2008 05:43:38 +0000 Subject: hush: cleanup pass, the biggest is - moved builtins to the end of the file, they really annoy in the middle of parser code. no real code changes. --- shell/hush_leaktool.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/hush_leaktool.sh') diff --git a/shell/hush_leaktool.sh b/shell/hush_leaktool.sh index 54a19aa6f..54161b3e9 100644 --- a/shell/hush_leaktool.sh +++ b/shell/hush_leaktool.sh @@ -8,6 +8,6 @@ freelist=`grep 'free 0x' "$output" | cut -d' ' -f2 | sort | uniq | xargs` grep -v free "$output" >temp1 for freed in $freelist; do echo Dropping $freed - cat temp1 | grep -v $freed >temp2 + grep -v $freed temp2 mv temp2 temp1 done -- cgit v1.2.3-55-g6feb