commit 30ce05915b9158b47c2332c80a8529c2b94d6d01 parent e9d8d5e7e580fb00c5acf46d5dab3428539383c9 Author: Andrew Laack <andrew@laack.co> Date: Mon, 8 Sep 2025 21:26:41 -0500 Added yt download net test Diffstat:
| A | big-downloader.sh | | | 7 | +++++++ |
| A | downloader.sh | | | 5 | +++++ |
2 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/big-downloader.sh b/big-downloader.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +while [ true ]; do + cd /dev/shm + yt-dlp https://www.youtube.com/watch?v=VlOjcOp9a5U -o $1.mp4 + rm -rf $1* +done diff --git a/downloader.sh b/downloader.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +for i in {1..10}; do + /home/andrew/bin/big-downloader.sh $i & +done