mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-17 03:20:02 +00:00
11 lines
364 B
Bash
Executable File
11 lines
364 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# cook the recipe with the old cook.rb (assuming you have set it up as described in github.com/TiddlyWiki/cooker)
|
|
cook $PWD/test/data/tiddlywiki.com/index.html.recipe -d $PWD -o oldcooked.html
|
|
|
|
# cook it with cook.js
|
|
node cook.js $PWD/test/data/tiddlywiki.com/index.html.recipe > newcooked.html
|
|
|
|
# compare the two
|
|
opendiff oldcooked.html newcooked.html
|