caching-approaches-comparison

Details

adapters/status.sh 11(+11 -0)

diff --git a/adapters/status.sh b/adapters/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/adapters/status.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+for directory in *; do
+	if [[ -d $directory ]]; then
+		echo $directory
+		cd $directory
+		git status
+		cd ..
+	fi
+done
+wait
\ No newline at end of file
diff --git a/applications/aplcache/status.sh b/applications/aplcache/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/aplcache/status.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+for directory in *; do
+	if [[ -d $directory ]]; then
+		echo $directory
+		cd $directory
+		git status
+		cd ..
+	fi
+done
+wait
\ No newline at end of file
diff --git a/applications/developers/status.sh b/applications/developers/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/developers/status.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+for directory in *; do
+	if [[ -d $directory ]]; then
+		echo $directory
+		cd $directory
+		git status
+		cd ..
+	fi
+done
+wait
\ No newline at end of file
diff --git a/applications/memoizeit/status.sh b/applications/memoizeit/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/memoizeit/status.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+for directory in *; do
+	if [[ -d $directory ]]; then
+		echo $directory
+		cd $directory
+		git status
+		cd ..
+	fi
+done
+wait
\ No newline at end of file
diff --git a/applications/status.sh b/applications/status.sh
new file mode 100644
index 0000000..b10f49f
--- /dev/null
+++ b/applications/status.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+echo "uncached"
+cd uncached; bash status.sh; cd ..
+echo "developers"
+cd developers; bash status.sh; cd ..
+echo "aplcache"
+cd aplcache; bash status.sh; cd ..
+echo "memoizeit"
+cd memoizeit; bash status.sh; cd ..
\ No newline at end of file
diff --git a/applications/uncached/status.sh b/applications/uncached/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/uncached/status.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+for directory in *; do
+	if [[ -d $directory ]]; then
+		echo $directory
+		cd $directory
+		git status
+		cd ..
+	fi
+done
+wait
\ No newline at end of file
diff --git a/approaches/status.sh b/approaches/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/approaches/status.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+for directory in *; do
+	if [[ -d $directory ]]; then
+		echo $directory
+		cd $directory
+		git status
+		cd ..
+	fi
+done
+wait
\ No newline at end of file