about summary refs log tree commit diff
path: root/makeDir.sh
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2022-01-24 20:42:58 -0500
committerZach DeCook <zachdecook@librem.one>2022-01-24 21:05:33 -0500
commit42347937a7d554cc4ffad0851d2a2fc0452f93dc (patch)
tree2701388688f0d2a2e37233d2382b2448312b74ea /makeDir.sh
parenta8cb10f119b8f3244d003c6733cdd16c2079ab55 (diff)
downloadswipeGuess-0.2.0.tar.gz
Readme: Update for c rewrite v0.2.0
Remove old shell version because it's slow.
Diffstat (limited to 'makeDir.sh')
-rwxr-xr-xmakeDir.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/makeDir.sh b/makeDir.sh
deleted file mode 100755
index 5c2d5c0..0000000
--- a/makeDir.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-dir="$1"
-mkdir -p "$dir"
-rm "$dir/"*
-source "$(dirname "$0")/functions.sh"
-while read -r line; do
-	fl=$(firstLetter "$line")
-	ll=$(lastLetter "$line")
-	echo "$line" >> "$dir/$fl$ll"
-done