From f4a55ee2e41e3ccc1001f7a5be453b34cb2662eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abiga=C3=ABlle=20Martin?= Date: Tue, 23 Sep 2025 23:25:34 +0200 Subject: [PATCH] misc: Added README.md to know how to create the initial data. --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d97e673 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +Command to concat all html together to be parsed: +``` +echo "" | cat > txt.xml && cat *.html >> txt.xml && echo "" >> txt.xml +``` + +Image balise to add: +
+ +To compress: +tar cvf archive.tar.xz --use-compress-program='xz -1T0' boop.csv + +To uncompress: +tar xvf archive.tar.xz --use-compress-program='xz -dT0'