This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Change OTP Field Type | |
// @namespace http://tampermonkey.net/ | |
// @version 1.1 | |
// @description Change the password field for OTP to a standard text field with autocomplete for one-time codes. | |
// @match https://ep.fram.idm.toyota.com/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Set destination folder (change as needed) | |
dest=~/dest | |
# Create destination folder if it doesn't exist | |
mkdir -p "$dest" | |
# Recursively find all files in ~/Messages/Attachments/ | |
find ~/Messages/Attachments/ -type f | while IFS= read -r file; do | |
base=$(basename "$file") |
OlderNewer