11 lines
314 B
Bash
11 lines
314 B
Bash
|
#!/bin/bash
|
||
|
echo " _____ import files from ~/.var/app/org.gnome.GTG/data/gtg ____"
|
||
|
|
||
|
cp ~/.var/app/org.gnome.GTG/data/gtg/*.xml ./sources
|
||
|
|
||
|
ls -larth sources/*.xml
|
||
|
|
||
|
echo " _____ ok files imported ____"
|
||
|
echo " _____ you can convert with running 'node app.js' ____"
|
||
|
echo " _____ and open http://localhost:3300/ ____"
|