From 4c5b6d7a3ecf3d4503046fa4000598500b04e89d Mon Sep 17 00:00:00 2001 From: Narsty Date: Sun, 14 May 2023 17:59:25 -0500 Subject: [PATCH] Add files via upload --- Executions/Copy All JPEG Images .txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Executions/Copy All JPEG Images .txt diff --git a/Executions/Copy All JPEG Images .txt b/Executions/Copy All JPEG Images .txt new file mode 100644 index 0000000..43cfa2a --- /dev/null +++ b/Executions/Copy All JPEG Images .txt @@ -0,0 +1,20 @@ +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 Author: Narsty +REM Title: Copy All JPEG Images +REM Target: MacOS +REM Version: 1.0 +REM Category: + +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 2000 +ENTER