From 906af62ee4989cc19b9bc825311b3c1fcf183340 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Sat, 9 Oct 2021 16:46:31 -0400 Subject: rename completelytypeword script --- completelyTypeWord.sh | 5 +++++ firstComplete.sh | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100755 completelyTypeWord.sh delete mode 100755 firstComplete.sh diff --git a/completelyTypeWord.sh b/completelyTypeWord.sh new file mode 100755 index 0000000..de13a92 --- /dev/null +++ b/completelyTypeWord.sh @@ -0,0 +1,5 @@ +#!/bin/sh +type=wtype +while read -r word; do + test "${word:1}" && $type "${word:1}" +done diff --git a/firstComplete.sh b/firstComplete.sh deleted file mode 100755 index de13a92..0000000 --- a/firstComplete.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -type=wtype -while read -r word; do - test "${word:1}" && $type "${word:1}" -done -- cgit 1.4.1