add stress_test.sh - hbb - hyperbitblock
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 8f76eda5d1533469e8d6e48812d540ea459e2647
DIR parent 6f63f72c872ab02d484b85af4b22627cac4501e5
HTML Author: kroovy <me@kroovy.de>
Date: Thu, 24 Apr 2025 00:12:02 +0200
add stress_test.sh
Diffstat:
M stress_test.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
DIR diff --git a/stress_test.sh b/stress_test.sh
@@ -1,3 +1,3 @@
-date
-time for a in $(seq 0 255); do for b in $(seq 0 255); do for c in $(seq 0 255); do for d in $(seq 0 255); do echo $a.$b.$c.$d > mynamedpipe; done; done; done; done
-date
+#!/bin/sh
+for a in $(seq 0 255); do for b in $(seq 0 255); do for c in $(seq 0 255); do for d in $(seq 0 255); do echo $a.$b.$c.$d > mynamedpipe; done; done; done; done
+