This file contains 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
import os | |
import shutil | |
assets_dir = './assets' | |
journal_dir = './journals' | |
pages_dir = './pages' | |
to_delete_dir = './to_delete' | |
def get_all_assets() -> list[str]: |
This file contains 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
brew install unrar | |
find . -name "*.rar" -exec unrar -y -ad x {} \; | |
// https://gotofritz.net/blog/tutorials/batch-unrar-command-line-os-x/index.html |