Skip to content

Instantly share code, notes, and snippets.

@mrprompt
Last active January 6, 2021 20:36
Show Gist options
  • Save mrprompt/4108538 to your computer and use it in GitHub Desktop.
Save mrprompt/4108538 to your computer and use it in GitHub Desktop.
Organiza a agenda de contatos do MacBook eliminando os contatos que não possuem um número de telefone.
tell application "Address Book"
activate
## caso queria que atualize somente os selecionados
#set lista to selection
## selecine todos os contatos
set lista to people
## percorro cada contato e removo os que não possuem um telefone
repeat with contato in lista
if (number of phones of contato = 0) then
delete contato
end if
end repeat
save
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment