mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-10 20:09:57 +00:00
14 lines
261 B
Bash
14 lines
261 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Split the tiddlers out of a TiddlyWiki file
|
||
|
|
||
|
mkdir -p tmp
|
||
|
mkdir -p tmp/ginsu
|
||
|
|
||
|
node ./tiddlywiki.js \
|
||
|
./editions/empty \
|
||
|
--verbose \
|
||
|
--load $1 \
|
||
|
--savetiddlers [!is[system]] $:/core/templates/tid-tiddler tmp/ginsu text/plain .tid \
|
||
|
|| exit 1
|