From b476de113232766008f69a36268b0b89c6b4aede Mon Sep 17 00:00:00 2001 From: anon <anon@anon.anon> Date: Tue, 10 Dec 2024 20:39:02 +0100 Subject: [PATCH] Added 'Misc./terribly_old_scripts/tor-dl-cpy.sh' --- Misc./terribly_old_scripts/tor-dl-cpy.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 Misc./terribly_old_scripts/tor-dl-cpy.sh diff --git a/Misc./terribly_old_scripts/tor-dl-cpy.sh b/Misc./terribly_old_scripts/tor-dl-cpy.sh new file mode 100755 index 0000000..2b3bbaa --- /dev/null +++ b/Misc./terribly_old_scripts/tor-dl-cpy.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +DL_FOLDER="/home/anon/Downloads" +TOR_DL_FOLDER="/home/anon/.local/share/torbrowser/tbb/x86_64/tor-browser_en-US/Browser/Downloads" + +for i in $TOR_DL_FOLDER/*; do + cp "$i" "$DL_FOLDER/" +done