From 11014028e53825b182cc7c190ab21c0724ff0c6b Mon Sep 17 00:00:00 2001 From: Rajwinder Kaur Date: Fri, 24 Feb 2017 19:28:02 -0600 Subject: [PATCH 1/5] my first commit --- kaur5310-testfile.adoc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 kaur5310-testfile.adoc diff --git a/kaur5310-testfile.adoc b/kaur5310-testfile.adoc new file mode 100644 index 0000000..9801343 --- /dev/null +++ b/kaur5310-testfile.adoc @@ -0,0 +1,2 @@ +Hello World + From 0536b03b82e0a4a12da95433db363579cd9a8afe Mon Sep 17 00:00:00 2001 From: Rajwinder Kaur Date: Fri, 24 Feb 2017 19:35:02 -0600 Subject: [PATCH 2/5] second commit --- kaur5310-testfile.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kaur5310-testfile.adoc b/kaur5310-testfile.adoc index 9801343..db506a4 100644 --- a/kaur5310-testfile.adoc +++ b/kaur5310-testfile.adoc @@ -1,2 +1,4 @@ -Hello World +Hello World +hello world +hello again From 503b4dcf133ed5fb0a8d997b9a0ba0368af9776e Mon Sep 17 00:00:00 2001 From: Rajwinder Kaur Date: Fri, 24 Feb 2017 19:40:41 -0600 Subject: [PATCH 3/5] third commit --- kaur5310-testfile.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kaur5310-testfile.adoc b/kaur5310-testfile.adoc index db506a4..88466e5 100644 --- a/kaur5310-testfile.adoc +++ b/kaur5310-testfile.adoc @@ -1,4 +1,4 @@ Hello World hello world -hello again +mars again From 0183eaeeac1734393cc2770c517a8971d0a9e59d Mon Sep 17 00:00:00 2001 From: rajwinder kaur Date: Sat, 25 Feb 2017 02:42:11 +0000 Subject: [PATCH 4/5] script commit --- kaur5310-Lab02.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 kaur5310-Lab02.sh diff --git a/kaur5310-Lab02.sh b/kaur5310-Lab02.sh new file mode 100755 index 0000000..94506f5 --- /dev/null +++ b/kaur5310-Lab02.sh @@ -0,0 +1,10 @@ +#!/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" +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}} +apt-get -y install tree +apt-get -y install git From a8a3873e8ee0509a5d65650b33545d4b15b3debc Mon Sep 17 00:00:00 2001 From: Rajwinder Kaur Date: Fri, 24 Feb 2017 21:09:28 -0600 Subject: [PATCH 5/5] Vagrantfile recommit --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 27726a7..36a72b8 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,6 +4,7 @@ Vagrant.configure(2) do |config| config.vm.box = "precise64" + config.vm.provision :shell, path: "./kaur5310-Lab02.sh" config.vm.box_url = "/var/vagrant/boxes/precise64.box" end