From ae6b02ad9c575bd0d491de3a15d3f73372092306 Mon Sep 17 00:00:00 2001 From: Pavel Date: Fri, 23 Sep 2016 20:00:34 -0500 Subject: [PATCH 1/6] my first commit --- lach0028-testfile.adoc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 lach0028-testfile.adoc diff --git a/lach0028-testfile.adoc b/lach0028-testfile.adoc new file mode 100644 index 0000000..6732dd5 --- /dev/null +++ b/lach0028-testfile.adoc @@ -0,0 +1,2 @@ +Hello World!!! +This is my first access to GitHub.com From 2fa5dc7251f55d916550be7a7ce58c970cae4167 Mon Sep 17 00:00:00 2001 From: Pavel Date: Fri, 23 Sep 2016 20:03:36 -0500 Subject: [PATCH 2/6] second commit --- lach0028-testfile.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lach0028-testfile.adoc b/lach0028-testfile.adoc index 6732dd5..d2dfa0b 100644 --- a/lach0028-testfile.adoc +++ b/lach0028-testfile.adoc @@ -1,2 +1,4 @@ Hello World!!! This is my first access to GitHub.com + +Hello Again From 38502887f70c6e5f8a1b0501b5530ceafb9e57c6 Mon Sep 17 00:00:00 2001 From: Pavel Date: Fri, 23 Sep 2016 20:06:01 -0500 Subject: [PATCH 3/6] third commit --- lach0028-testfile.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lach0028-testfile.adoc b/lach0028-testfile.adoc index d2dfa0b..44d950b 100644 --- a/lach0028-testfile.adoc +++ b/lach0028-testfile.adoc @@ -1,4 +1,4 @@ -Hello World!!! +Hello Mars!!! This is my first access to GitHub.com Hello Again From 886a624f9639612a089ce8604e34a6d18e57f793 Mon Sep 17 00:00:00 2001 From: Pavel Date: Sat, 24 Sep 2016 01:53:29 +0000 Subject: [PATCH 4/6] script commit --- lach0028-Lab02.sh | 53 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 lach0028-Lab02.sh diff --git a/lach0028-Lab02.sh b/lach0028-Lab02.sh new file mode 100755 index 0000000..7579870 --- /dev/null +++ b/lach0028-Lab02.sh @@ -0,0 +1,53 @@ +!/bin/bash +# Starter shell script +# Rename as YourID-Lab02.sh +# Put commands below +sudo apt-get install -y tree +sudo apt-get install -y git +mkdir lab-02 +cd lab-02 +mkdir A C D +cd A +mkdir B C D +touch aa +cd B +touch bb +cd .. +cd C +touch cc +cd .. +cd D +touch dd +cd .. +cd .. +cd C +mkdir E F +touch cc +cd E +touch ee +cd .. +cd F +touch ff +cd .. +cd .. +cd D +mkdir G H I +touch dd +cd G +touch gg +cd .. +cd H +mkdir J K +touch hh +cd J +touch jj +cd .. +cd K +touch kk +cd .. +cd .. +cd I +touch ii +cd ~ +# To run, type ./YourID-Lab02.sh (you need the "./") +# It must have permissions starting with a "7" From 17ff20691e6895f6b9e065317ae902c9458b6193 Mon Sep 17 00:00:00 2001 From: Pavel Date: Mon, 26 Sep 2016 03:30:31 +0000 Subject: [PATCH 5/6] 2nd script commit --- lach0028-Lab02.sh | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/lach0028-Lab02.sh b/lach0028-Lab02.sh index 7579870..76f9acc 100755 --- a/lach0028-Lab02.sh +++ b/lach0028-Lab02.sh @@ -2,11 +2,12 @@ # Starter shell script # Rename as YourID-Lab02.sh # Put commands below -sudo apt-get install -y tree -sudo apt-get install -y git -mkdir lab-02 +# sudo apt-get install -y tree +# sudo apt-get install -y git cd lab-02 -mkdir A C D +mkdir main +cd main +mkdir A E H cd A mkdir B C D touch aa @@ -20,34 +21,34 @@ cd D touch dd cd .. cd .. -cd C -mkdir E F -touch cc cd E +mkdir F G touch ee -cd .. cd F touch ff cd .. -cd .. -cd D -mkdir G H I -touch dd cd G touch gg cd .. +cd .. cd H -mkdir J K +mkdir I J M touch hh +cd I +touch ii +cd .. cd J +mkdir K L touch jj -cd .. cd K touch kk cd .. +cd L +touch ll cd .. -cd I -touch ii +cd .. +cd M +touch mm cd ~ # To run, type ./YourID-Lab02.sh (you need the "./") # It must have permissions starting with a "7" From dbb3ce57951064531b8870f40af6a3d7c45dbbfb Mon Sep 17 00:00:00 2001 From: Pavel Date: Sun, 25 Sep 2016 22:53:12 -0500 Subject: [PATCH 6/6] Vagrant 2nd commit --- Vagrantfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 27726a7..25e251b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,6 +4,8 @@ Vagrant.configure(2) do |config| config.vm.box = "precise64" - config.vm.box_url = "/var/vagrant/boxes/precise64.box" +# config.vm.box_url = "/var/vagrant/boxes/precise64.box" + config.vm.provision :shell, path: "./lach0028-Lab02.sh" + end