tfcache-comparison

added status bash script

2/7/2021 2:35:29 AM

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/aplcache/status.sh b/applications/aplcache/aplcache/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/aplcache/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/aplcache/aplcachetf/status.sh b/applications/aplcache/aplcachetf/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/aplcache/aplcachetf/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..e1b48a3
--- /dev/null
+++ b/applications/aplcache/status.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+echo "aplcache"
+cd aplcache; bash status.sh; cd ..
+echo "aplcachetf"
+cd aplcachetf; bash status.sh; cd ..
diff --git a/applications/memoizeit/memoizeit/status.sh b/applications/memoizeit/memoizeit/status.sh
new file mode 100644
index 0000000..508dc28
--- /dev/null
+++ b/applications/memoizeit/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
diff --git a/applications/memoizeit/memoizeittf/status.sh b/applications/memoizeit/memoizeittf/status.sh
new file mode 100644
index 0000000..1321908
--- /dev/null
+++ b/applications/memoizeit/memoizeittf/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..1c77b49
--- /dev/null
+++ b/applications/memoizeit/status.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+echo "memoizeit"
+cd memoizeit; bash status.sh; cd ..
+echo "memoizeittf"
+cd memoizeittf; bash status.sh; cd ..
diff --git a/applications/status.sh b/applications/status.sh
new file mode 100644
index 0000000..1bf2f38
--- /dev/null
+++ b/applications/status.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+echo "uncached"
+cd uncached; 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

status.sh 5(+5 -0)

diff --git a/status.sh b/status.sh
new file mode 100644
index 0000000..1215309
--- /dev/null
+++ b/status.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+cd adapters; bash status.sh; cd ..
+cd approaches; bash status.sh; cd ..
+cd applications; bash status.sh; cd ..