aboutsummaryrefslogtreecommitdiff
path: root/entries/braxtonhall
diff options
context:
space:
mode:
Diffstat (limited to 'entries/braxtonhall')
-rw-r--r--entries/braxtonhall/wc/.gitignore1
-rw-r--r--entries/braxtonhall/wc/fib.sh18
2 files changed, 19 insertions, 0 deletions
diff --git a/entries/braxtonhall/wc/.gitignore b/entries/braxtonhall/wc/.gitignore
new file mode 100644
index 0000000..f845a7d
--- /dev/null
+++ b/entries/braxtonhall/wc/.gitignore
@@ -0,0 +1 @@
+*.fib \ No newline at end of file
diff --git a/entries/braxtonhall/wc/fib.sh b/entries/braxtonhall/wc/fib.sh
new file mode 100644
index 0000000..c909617
--- /dev/null
+++ b/entries/braxtonhall/wc/fib.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+rec () {
+ shopt -s nullglob dotglob
+
+ if [ $2 == "0" ]; then
+ :
+ elif [ $2 == "1" ]; then
+ echo "🥵" > "$1/$2.fib"
+ else
+ mkdir "$1/$2"
+ rec "$1/$2" $(($2 - 1))
+ rec "$1/$2" $(($2 - 2))
+ fi
+}
+
+rec $(pwd) $1
+find $(pwd)/$1 -type f | wc -l