-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcriador.sh
38 lines (38 loc) · 1.39 KB
/
criador.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
echo"";
echo"
╔═════════════════════════════════════════════════════════════╗
║ _ _ _ _ ║
║ / \ _ _| |_ ___ _ __ ___ __ _| |_(_)_______ _ __ ║
║ / _ \| | | | __/ _ \| '_ ` _ \ / _` | __| |_ / _ \ '__| ║
║ / ___ \ |_| | || (_) | | | | | | (_| | |_| |/ / __/ | ║
║ /_/ \_\__,_|\__\___/|_| |_| |_|\__,_|\__|_/___\___|_| ║
║ ║
║ CRIADO COM MUITO AMOR POR ║
║ ERICK LUIZ BERTOLINI ║
║ ║
╚═════════════════════════════════════════════════════════════╝"
echo "Você está criando esse site no:"
pwd
echo "Correto? (S/N)"
read opcao;
if [ $opcao != "s" ];
then
echo "Ok, reformule e volte novamente"
else
npm init -y
npm install gulp --save-dev
mkdir src
cd src
touch index.html
mkdir css images fonts js scss
cd ..
npm install node-sass gulp-sass --save-dev
cp ~/automatizer/gulpfile.js ./
cd src/scss/
touch main.scss
cd ../..
code .
gulp
rm criador.sh
fi