From 7444722fd1bde771b6ce051d439658778d70941d Mon Sep 17 00:00:00 2001 From: Narstybits Date: Sun, 11 Jun 2023 16:31:36 -0500 Subject: [PATCH] added new load testing scripts --- Executions/File load Tester .txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Executions/File load Tester .txt diff --git a/Executions/File load Tester .txt b/Executions/File load Tester .txt new file mode 100644 index 0000000..4575a2d --- /dev/null +++ b/Executions/File load Tester .txt @@ -0,0 +1,23 @@ +REM Creates 100 Files each containing 30MB of random data on the Desktop +REM Can modify the count=30 parameter to change the amount of MB in each file +REM Can modify the '100' to change the number of files created + +REM please be EXTREMELY careful with load testing scripts as they can damage your system + +REM Author: Narsty +REM Title: File load Tester +REM Target: MacOS +REM Version: 1.0 +REM Category: Executions + +ID 05ac:021e Apple:Keyboard +DELAY 1000 +GUI SPACE +DELAY 500 +STRING terminal +DELAY 500 +ENTER +DELAY 1000 +STRING cd ~/Desktop && for i in {1..100}; do dd if=/dev/random of=file$i bs=1m count=30; done +DELAY 500 +ENTER