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 | |
| # reminders-cli - CLI para Apple Reminders | |
| # Versão híbrida: AppleScript retorna texto, bash formata JSON | |
| set -e | |
| # Quando chamado via SSH com command= restrito, os args vêm em SSH_ORIGINAL_COMMAND | |
| if [ -n "$SSH_ORIGINAL_COMMAND" ]; then | |
| eval set -- $SSH_ORIGINAL_COMMAND | |
| fi |