Skip to main content

make cache file. inspired by mktemp

Project description

Installation

$ [sudo] pip install mkcache
$ [sudo] npm i -g mkcache

How it works

$XDG_CACHE_HOME/mkcache/<hash>

Config

export MKCACHE=path/to/cache # ~/.cache/mkcache by default

Examples

example 1. run script only once:

path="$(mkcache script "$@")"
! [ -e "$path" ] && { script "$@" || exit; touch "$path"; }

example 2. speed up macOS tts with mkcache:

path="$(mkcache "$@")"
! [ -e "$path" ] && /usr/bin/say "$@" -o "$path"
afplay "$path"

readme42.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mkcache-2020.12.3.tar.gz (1.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page