summary refs log tree commit diff
path: root/firstComplete.sh
diff options
context:
space:
mode:
Diffstat (limited to 'firstComplete.sh')
-rwxr-xr-xfirstComplete.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/firstComplete.sh b/firstComplete.sh
index 0a75e88..de13a92 100755
--- a/firstComplete.sh
+++ b/firstComplete.sh
@@ -1,3 +1,5 @@
 #!/bin/sh
-read -r word
-sxmo_type.sh ${word:1}
+type=wtype
+while read -r word; do
+	test "${word:1}" && $type "${word:1}"
+done