print and echo can now skip NULL strings...
[svn/Cll1h/.git] / demos / performance / test-performance
index c752da474747aad5f054791cad8a53e25b3f848e..8a69facdeb3f0c0367206240c6c757bdcba5d511 100755 (executable)
@@ -6,19 +6,19 @@ make fputs
 clear
 cat print.py
 echo "Running..."
-time ./print.py &> /dev/null
+time ./print.py > /dev/null
 cat print.pl
 echo "Running..."
-time ./print.pl &> /dev/null
+time ./print.pl > /dev/null
 cat cll1-print.c
 echo "Running..."
-time ./cll1-print &> /dev/null
+time ./cll1-print > /dev/null
 cat printf.c
 echo "Running..."
-time ./printf &> /dev/null
+time ./printf > /dev/null
 cat puts.c
 echo "Running..."
-time ./puts &> /dev/null
+time ./puts > /dev/null
 cat fputs.c
 echo "Running..."
-time ./fputs &> /dev/null
+time ./fputs > /dev/null
This page took 0.185367 seconds and 4 git commands to generate.