From 5ab05b0c11078a9afb6a9accb360b53e05e4d76f Mon Sep 17 00:00:00 2001 From: Ruba Date: Fri, 27 Feb 2015 17:37:52 -0600 Subject: [PATCH 1/4] second commit --- alfa4230-testfile.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 alfa4230-testfile.md diff --git a/alfa4230-testfile.md b/alfa4230-testfile.md new file mode 100644 index 0000000..bc1cba4 --- /dev/null +++ b/alfa4230-testfile.md @@ -0,0 +1,3 @@ +Hello World +Hello again + From 085a78bd821450fee8e143fe25ce63cdee55be6c Mon Sep 17 00:00:00 2001 From: Ruba Date: Fri, 27 Feb 2015 17:40:01 -0600 Subject: [PATCH 2/4] third commit --- alfa4230-testfile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alfa4230-testfile.md b/alfa4230-testfile.md index bc1cba4..173b679 100644 --- a/alfa4230-testfile.md +++ b/alfa4230-testfile.md @@ -1,3 +1,3 @@ -Hello World +Hello Mars Hello again From 3ce3008bced1e11fcad42ef2a44a8780621ed2ea Mon Sep 17 00:00:00 2001 From: Ruba Date: Sat, 28 Feb 2015 02:15:49 +0000 Subject: [PATCH 3/4] script commit --- alfa4230-lab03.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 alfa4230-lab03.sh diff --git a/alfa4230-lab03.sh b/alfa4230-lab03.sh new file mode 100755 index 0000000..d7809dd --- /dev/null +++ b/alfa4230-lab03.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# Starter shell script +# Put commands below +# To run, type ./starter.sh (you need the "./") +# It must have permissions starting with a "7" +mkdir -p A/{B,C,D} +mkdir -p C/{E,F} +mkdir -p D/{G,H/{J,K},I} +touch A/{aa,B/bb,C/cc,D/dd} +touch C/{cc,E/ee,F/ff} +touch D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii} +sudo apt-get -y install tree +sudo apt-get -y install git From 4b1ccafaaae16a946112569d82c30afce2c7cd48 Mon Sep 17 00:00:00 2001 From: Ruba Date: Sat, 28 Feb 2015 02:20:48 +0000 Subject: [PATCH 4/4] 2nd script commit --- alfa4230-lab03.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/alfa4230-lab03.sh b/alfa4230-lab03.sh index d7809dd..95e634e 100755 --- a/alfa4230-lab03.sh +++ b/alfa4230-lab03.sh @@ -3,11 +3,13 @@ # Put commands below # To run, type ./starter.sh (you need the "./") # It must have permissions starting with a "7" -mkdir -p A/{B,C,D} -mkdir -p C/{E,F} -mkdir -p D/{G,H/{J,K},I} -touch A/{aa,B/bb,C/cc,D/dd} -touch C/{cc,E/ee,F/ff} -touch D/{dd,G/gg,H/{hh,J/jj,K/kk},I/ii} +#mkdir -p A/{B,C,D} +#mkdir -p C/{E,F} +#mkdir -p D/{G,H/{J,K},I} +#touch A/{aa,B/bb,C/cc,D/dd} +#touch C/{cc,E/ee,F/ff} +#touch 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}} sudo apt-get -y install tree sudo apt-get -y install git