From dff01d6f89fd404a4b4cb940e82a6dc50b91786c Mon Sep 17 00:00:00 2001 From: wbudic <42565654+wbudic@users.noreply.github.com> Date: Wed, 4 Mar 2020 04:39:14 +1100 Subject: [PATCH] init --- install_modules.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 install_modules.sh diff --git a/install_modules.sh b/install_modules.sh new file mode 100644 index 0000000..8d857c3 --- /dev/null +++ b/install_modules.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# +# This script tries to install install and test required modules for this project. +# +# You must have superuser admin password priviledges to run this script. +# +## git clone https://github.com/wbudic/LifeLog.git +# Uncoment the following git pull if also wanting to perform a latest pull +# from the master (upgrade) repository. +## git pull +sudo cat Installation.txt | grep 'sudo apt install' > install_lifelog_modules_1.1.8.sh +sudo cat Installation.txt | grep 'sudo cpan' >> install_lifelog_modules_1.1.8.sh +sudo chmod +x install_lifelog_modules_1.1.8.sh +# The following is actual installation file generated. Don't run outside this script. +# You can delete or keep after running this script. +sudo ./install_lifelog_modules_1.1.8.sh + +echo "\nDone with Life Log modules installation!\n" + + + -- 2.34.1