summaryrefslogtreecommitdiff
path: root/src/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/test.sh')
-rwxr-xr-xsrc/test.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test.sh b/src/test.sh
deleted file mode 100755
index 84c5405..0000000
--- a/src/test.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-
-line="hell o world"
-# replace tabs with spaces
-l="$line"
-line=
-while [ "$l" ]; do
- c="${l%*${l#?}}"
- case "$c" in
- "\t") line="$line ";;
- *) line="$line$c" ;;
- esac
- l="${l#?}"
- printf "%s\n" "$c"
-done
-printf "%s\n" "$line"
-