diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-08-04 13:22:16 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-08-04 13:22:16 +0200 |
commit | b81b2b920d300f1cb292fecf96e9d590497607f8 (patch) | |
tree | dabd9f0256e0775bbd7344d3997f917f97bc5e3c /subs/README | |
parent | e9aa72aef50d72b8bb358cd5ef126d3ce9c64635 (diff) | |
download | mkinitcpio-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/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) |