From 75cc9435077555caaba75233b52e785a57ebbad4 Mon Sep 17 00:00:00 2001 From: Aaron Leff Date: Sun, 24 Sep 2017 13:32:16 -0500 Subject: [PATCH 1/8] my first commit --- leff7766-testfile.adoc | 1 + 1 file changed, 1 insertion(+) create mode 100644 leff7766-testfile.adoc diff --git a/leff7766-testfile.adoc b/leff7766-testfile.adoc new file mode 100644 index 0000000..557db03 --- /dev/null +++ b/leff7766-testfile.adoc @@ -0,0 +1 @@ +Hello World From 705ad5116a70c2f35445aff1214df2b902d89284 Mon Sep 17 00:00:00 2001 From: Aaron Leff Date: Sun, 24 Sep 2017 13:33:56 -0500 Subject: [PATCH 2/8] second commit --- leff7766-testfile.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/leff7766-testfile.adoc b/leff7766-testfile.adoc index 557db03..5218ccd 100644 --- a/leff7766-testfile.adoc +++ b/leff7766-testfile.adoc @@ -1 +1,2 @@ Hello World +Hello Again From 7d9ea6f587134ce73ae245f3a8c16c95dcec7f3c Mon Sep 17 00:00:00 2001 From: Aaron Leff Date: Sun, 24 Sep 2017 13:34:48 -0500 Subject: [PATCH 3/8] third commit --- leff7766-testfile.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leff7766-testfile.adoc b/leff7766-testfile.adoc index 5218ccd..d71dba4 100644 --- a/leff7766-testfile.adoc +++ b/leff7766-testfile.adoc @@ -1,2 +1,2 @@ -Hello World +Hello Mars Hello Again From c7c0c54094bdd30ef91b3acb7fa1635c65d3b1cd Mon Sep 17 00:00:00 2001 From: aaronmleff Date: Sun, 24 Sep 2017 20:53:18 +0000 Subject: [PATCH 4/8] script commit --- leff7766-Lab02.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 leff7766-Lab02.sh diff --git a/leff7766-Lab02.sh b/leff7766-Lab02.sh new file mode 100755 index 0000000..fea064b --- /dev/null +++ b/leff7766-Lab02.sh @@ -0,0 +1,17 @@ +#!/bin/bash +# Starter shell script +# Rename as YourID-Lab02.sh +# Put commands below +# To run, type ./YourID-Lab02.sh (you need the "./") +# It must have permissions starting with a "7" + +#creating those directories/folders form part 1 +mkdir -p main/{A/{B,C,D},C/{E,F},D/{G,H/{J,K},I}} +touch main/{A/{aa,B/bb,C/cc,D/dd},C/{cc,E/ee,F/ff},D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii}} + + +#installing those tree and git updates +apt-get update +apt-get -y install tree +apt-get -y install git + From cc23f4237e5ad318d8cad0ba442ff636d8828f57 Mon Sep 17 00:00:00 2001 From: aaronmleff Date: Tue, 26 Sep 2017 18:11:23 +0000 Subject: [PATCH 5/8] 2nd script commit --- leff7766-Lab02.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/leff7766-Lab02.sh b/leff7766-Lab02.sh index fea064b..42556f7 100755 --- a/leff7766-Lab02.sh +++ b/leff7766-Lab02.sh @@ -1,13 +1,11 @@ -#!/bin/bash -# Starter shell script # Rename as YourID-Lab02.sh # Put commands below # To run, type ./YourID-Lab02.sh (you need the "./") # It must have permissions starting with a "7" #creating those directories/folders form part 1 -mkdir -p main/{A/{B,C,D},C/{E,F},D/{G,H/{J,K},I}} -touch main/{A/{aa,B/bb,C/cc,D/dd},C/{cc,E/ee,F/ff},D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii}} +mkdir -p ~/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} +touch ~/main/{A/{aa,B/bb,C/cc,D/dd},E/{ee,F/ff,G/gg},H/{hh,I/ii,J/{jj,K/kk,L/ll}M/mm}} #installing those tree and git updates From 101b2dbd829efd65cc300f623e6ef403bb23b6b3 Mon Sep 17 00:00:00 2001 From: aaronmleff Date: Sun, 1 Oct 2017 00:35:05 +0000 Subject: [PATCH 6/8] script commit again --- leff7766-Lab02.sh | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/leff7766-Lab02.sh b/leff7766-Lab02.sh index 42556f7..c2efffd 100755 --- a/leff7766-Lab02.sh +++ b/leff7766-Lab02.sh @@ -1,15 +1,14 @@ +#!/bin/bash +# Starter shell script # Rename as YourID-Lab02.sh # Put commands below # To run, type ./YourID-Lab02.sh (you need the "./") # It must have permissions starting with a "7" -#creating those directories/folders form part 1 -mkdir -p ~/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} -touch ~/main/{A/{aa,B/bb,C/cc,D/dd},E/{ee,F/ff,G/gg},H/{hh,I/ii,J/{jj,K/kk,L/ll}M/mm}} +#creating those directories .... +mkdir -p /{A/{B,C,D},C/{E,F},D/{G,H/{J,K},I}} +touch /{A/{aa,B/bb,C/cc,D/dd},C/{cc,E/ee,F/ff},D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii}} - -#installing those tree and git updates -apt-get update +#updates apt-get -y install tree apt-get -y install git - From 385cb2a7a23f6e731dcaa94aa38d4d1beb9c0838 Mon Sep 17 00:00:00 2001 From: aaronmleff Date: Sun, 1 Oct 2017 00:44:45 +0000 Subject: [PATCH 7/8] 2nd script commit --- leff7766-Lab02.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/leff7766-Lab02.sh b/leff7766-Lab02.sh index c2efffd..e70234e 100755 --- a/leff7766-Lab02.sh +++ b/leff7766-Lab02.sh @@ -6,8 +6,9 @@ # It must have permissions starting with a "7" #creating those directories .... -mkdir -p /{A/{B,C,D},C/{E,F},D/{G,H/{J,K},I}} -touch /{A/{aa,B/bb,C/cc,D/dd},C/{cc,E/ee,F/ff},D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii}} +mkdir -p ~/main/{A/{B,C,D},E/{F,G},H/{I,J/{K,L},M}} +touch ~/main/{A/{aa,B/bb,C/cc,D/dd},E/{ee,F/ff,G/gg},H/{hh,I/ii,J/{jj,K/kk,L/ll},M/mm}} + #updates apt-get -y install tree From 183b55f8c30dd1ae8130f8d7ddb513c7f4c6ba1e Mon Sep 17 00:00:00 2001 From: aaronmleff Date: Sat, 30 Sep 2017 19:58:08 -0500 Subject: [PATCH 8/8] Vagrantfile commit --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index f5a3c8c..213f7de 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -5,5 +5,6 @@ Vagrant.configure(2) do |config| config.vm.box = "ubuntu/xenial64" config.vm.box_url = "/var/vagrant/boxes/xenial64.box" + config.vm.provision :shell, path: "./leff7766-Lab02.sh" end