summaryrefslogtreecommitdiffstats
path: root/subs/README
diff options
context:
space:
mode:
Diffstat (limited to 'subs/README')
-rw-r--r--subs/README11
1 files changed, 0 insertions, 11 deletions
diff --git a/subs/README b/subs/README
deleted file mode 100644
index ca29eb2..0000000
--- a/subs/README
+++ /dev/null
@@ -1,11 +0,0 @@
-The subs tool has been created to solve the IFS ignorance of dash.
-Instead of doing
-
-OLDIFS=$IFS
-IFS=$char
-func $arglist
-IFS=$OLDIFS
-
-now do
-
-func $(subs -n $char $arglist)