From cc675cb3b3e571ff9cdbf3825b8b0c20c6411834 Mon Sep 17 00:00:00 2001 From: Yumna Akhtar Date: Fri, 1 Mar 2019 15:11:25 -0600 Subject: [PATCH 1/5] my first commit --- akht8823-testfile.adoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 akht8823-testfile.adoc diff --git a/akht8823-testfile.adoc b/akht8823-testfile.adoc new file mode 100644 index 0000000..35118d6 --- /dev/null +++ b/akht8823-testfile.adoc @@ -0,0 +1,14 @@ +Hello World. + +A normal paragraph. + + A paragraph offset by at least one space becomes a literal paragraph. + All lines in a literal paragraph must be adjacent. + + A literal paragraph is displayed as preformatted text. + The text is shown in a fixed-width font. + Spaces and newlines, + like the ones in this sentence, + are preserved. + +Another normal paragraph. From d2a76bcb80d9362a5a22a1546ea180b2259d8b5c Mon Sep 17 00:00:00 2001 From: Yumna Akhtar Date: Fri, 1 Mar 2019 15:12:37 -0600 Subject: [PATCH 2/5] second commit --- akht8823-testfile.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/akht8823-testfile.adoc b/akht8823-testfile.adoc index 35118d6..3bb123d 100644 --- a/akht8823-testfile.adoc +++ b/akht8823-testfile.adoc @@ -1,5 +1,7 @@ Hello World. +Hello Again. + A normal paragraph. A paragraph offset by at least one space becomes a literal paragraph. From 65365c82a62947f8961ae0624dbf2ff7907479c6 Mon Sep 17 00:00:00 2001 From: Yumna Akhtar Date: Fri, 1 Mar 2019 15:13:25 -0600 Subject: [PATCH 3/5] third commit --- akht8823-testfile.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akht8823-testfile.adoc b/akht8823-testfile.adoc index 3bb123d..f5ed0f9 100644 --- a/akht8823-testfile.adoc +++ b/akht8823-testfile.adoc @@ -1,4 +1,4 @@ -Hello World. +Hello Mars. Hello Again. From daeee5f83b12cf1019641d30c57960447cae46c4 Mon Sep 17 00:00:00 2001 From: Yumna Akhtar Date: Fri, 1 Mar 2019 22:01:37 +0000 Subject: [PATCH 4/5] 2nd script commit --- akht8823-Lab02.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 akht8823-Lab02.sh diff --git a/akht8823-Lab02.sh b/akht8823-Lab02.sh new file mode 100755 index 0000000..6c8d895 --- /dev/null +++ b/akht8823-Lab02.sh @@ -0,0 +1,12 @@ +#!/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}} +sudo apt-get update +sudo apt-get -y install tree +sudo apt-get -y install git From 1ee6b55f0158ad42f54d07c94718dcb3aca8da1d Mon Sep 17 00:00:00 2001 From: Yumna Akhtar Date: Fri, 1 Mar 2019 16:14:53 -0600 Subject: [PATCH 5/5] Vagrantfile commit --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index f5a3c8c..4f966f6 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: "./akht8823-Lab02.sh" end