diff options
Diffstat (limited to 'subs/README')
-rw-r--r-- | subs/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/subs/README b/subs/README new file mode 100644 index 0000000..ca29eb2 --- /dev/null +++ b/subs/README @@ -0,0 +1,11 @@ +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) |