summaryrefslogtreecommitdiffstats
path: root/subs/README
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2006-08-04 13:22:16 +0200
committerThomas Bächler <thomas@archlinux.org>2006-08-04 13:22:16 +0200
commitb81b2b920d300f1cb292fecf96e9d590497607f8 (patch)
treedabd9f0256e0775bbd7344d3997f917f97bc5e3c /subs/README
parente9aa72aef50d72b8bb358cd5ef126d3ce9c64635 (diff)
downloadmkinitcpio-b81b2b920d300f1cb292fecf96e9d590497607f8.tar.gz
mkinitcpio-b81b2b920d300f1cb292fecf96e9d590497607f8.tar.xz
Solved IFS issues
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@139 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'subs/README')
-rw-r--r--subs/README11
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)