Exportar stickies creados por Stickies.app
- Instale Notational Velocity (NV) e inicie la aplicación
- En Finder, abra su carpeta
Library
y localice StickiesDatabase
- Arrastre
StickiesDatabase
a la 'Lista de notas filtradas' en la ventana principal de NV (consulte aquí para referencia)
- En NV, seleccione cualquier número de notas y elija
Export
en el menú
Si prefiere escribir su propio código, eche un vistazo a Learning Cocoa con Objetivo -C que explica cómo aplicar ingeniería inversa al formato StickiesDatabase
.
Exportar stickies del panel de control
Ejecuta esto en Terminal.app
plutil -convert json -r -o - ~/Library/Preferences/widget-com.apple.widget.stickies.plist |
awk '$1 ~ /-data/ { start=index($0, ":")+3
end=length($0)-2
sticky=substr($0, start, end-start+1)
gsub(/<.?.?div>/, "", sticky)
gsub(/<br>/, "\n", sticky)
print sticky
print "---" }' > ~/all-my-stickies.txt