-
Notifications
You must be signed in to change notification settings - Fork 1
/
interactive_faq.sh
45 lines (21 loc) · 1.47 KB
/
interactive_faq.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
39
40
41
42
43
44
45
#!/bin/bash
clear
echo -e "\n\n\n\n\n Dynamic code works introduction manual \n\n\n\n\n\n"
sleep 3
echo -e "\n\n\n\n\n Please relax, read and try to understand the basic concept \n\n\n\n\n\n"
sleep 3
echo -e "\n\n\n\n\n This a primary root Project path, and its contents \n\n\n\n\n\n"
sleep 3
echo -e "# Project Root Dir."
sleep 2
clear && echo -e '\n\n /Users/rostislavgrigoriev/OZ/adam/ \n\n Project Root Dir \n\n';ls -la $(dirname `pwd`);
sleep 6
echo -e "# Ansible Root Dir - Contains all IaC CodeBase, for DevOps team code side ansible is a 'workdir' not are project root - "
sleep 2
clear && echo -e '\n\n /Users/rostislavgrigoriev/OZ/adam/ansible \n\n Ansible Root Dir \n\n';ls -la `pwd`;
sleep 2
echo -e "# Services which we develop for the product. Root Dir services."
clear && echo -e '\n\n /Users/rostislavgrigoriev/OZ/adam/ \n\n Project Root Dir \n\n';ls -la $(dirname `pwd`)\/services;
echo -e "# Backend equipment services, databases, and applications which operate by services that we develop for the product. Root Dir dockerfiles"
clear && echo -e '\n\n /Users/rostislavgrigoriev/OZ/adam/ \n\n Project Root Dir \n\n';ls -la $(dirname `pwd`)\/dockerfiles;
clear && echo -e '\n\n /Users/rostislavgrigoriev/OZ/adam/ \n\n Products Root Dir \n\n';ls -la $(dirname `pwd`)\/ansible\/inventories\/products;