3
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Macのメモ帳から内容をファイルに書き出す

Posted at

Macのメモ帳はPDFにエクスポートする機能しか提供されてない、本体はsqliteでZNOTEBODYテーブルのZHTMLSTRINGカラムに本体が入ってる。本体はHTML。
ファイルとして書き出したいときのワンライナーを紹介しておく。
bash3.2で動作確認。どうでもいい話だがbash4だとfor in loopが入ってるらしいという気づきを得た

count=0; sqlite3 Library/Containers/com.apple.Notes/Data/Library/Notes/NotesV4.storedata 'select ZHTMLSTRING from ZNOTEBODY' | while read line; do echo $line > note$count; ((count++)); done
3
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?