2018-06-25 17:15:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#git submodule init
|
2018-06-28 17:43:00 +02:00
|
|
|
git submodule update --init --recursive --remote
|
2018-06-25 17:15:37 +02:00
|
|
|
mkdir -p reveal.js/js/ reveal.js/css/ reveal.js/images/
|
2018-06-28 17:43:00 +02:00
|
|
|
#cp js/* reveal.js/js/
|
2018-06-25 17:42:55 +02:00
|
|
|
#cp css/* reveal.js/css/
|
2018-06-28 17:43:00 +02:00
|
|
|
cp images/* reveal.js/images/
|
2019-01-04 19:16:26 +01:00
|
|
|
rm -f reveal.js/index.html reveal.js/mastodon-presentazione.giulianova.md
|
|
|
|
ln index.html mastodon-presentazione.giulianova.md reveal.js/
|
2018-10-07 14:17:36 +02:00
|
|
|
|
|
|
|
(firefox reveal.js/index.html) || (echo -e "\n Apri con il tuo browser preferito" `pwd`"/reveal.js/index.html")
|
|
|
|
|
|
|
|
|
2018-10-07 14:12:45 +02:00
|
|
|
#cd reveal.js
|
|
|
|
#npm install
|
|
|
|
#npm start
|