Commit Diff


commit - 609fc9f9d97bc972b86dd4fe6ab74074d960b81f
commit + c421bd46ed48b27172a41691be49749883ca47c7
blob - a4183f042872c0872885f867df5ac4551ceeb2a8 (mode 755)
blob + /dev/null
--- regress/genbigfile
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-
-set -e
-
-dotimes() {
-	if which jot 2>/dev/null >/dev/null; then
-		jot "$@"
-	elif which seq 2>/dev/null >/dev/null; then
-		seq "$@"
-	else
-		echo "no jot/seq binary found"
-		exit 1
-	fi
-}
-
-file="$1"
-
-if [ -z "$file" ]; then
-	echo "USAGE: $(dirname "$0") <filename>"
-	exit 1
-fi
-
-printf "" > "$file"
-
-for i in `dotimes 1024`; do
-	for j in `dotimes 1024`; do
-		echo "a" >> "$file"
-	done
-done