summaryrefslogtreecommitdiffstats
path: root/bash-completion/ionice
diff options
context:
space:
mode:
authorKarel Zak2013-09-30 15:49:00 +0200
committerKarel Zak2013-09-30 15:49:00 +0200
commitce3e6b15e2c4478b2df9a7016c168b16325abfb0 (patch)
tree8c85ee4225a6a6a4db7fac0b63445a021b826eb5 /bash-completion/ionice
parenttextual: fix misspelled words in -rc1 (diff)
downloadkernel-qcow2-util-linux-ce3e6b15e2c4478b2df9a7016c168b16325abfb0.tar.gz
kernel-qcow2-util-linux-ce3e6b15e2c4478b2df9a7016c168b16325abfb0.tar.xz
kernel-qcow2-util-linux-ce3e6b15e2c4478b2df9a7016c168b16325abfb0.zip
bash-completion: use '\n' as IFS when ask for filenames
The bash completion for more(1) treats the space-separated pieces of filenames as different files. $ touch foo\ bar $ more foo<TAB> bar foo Reported-by: Ángel González <ingenit@zoho.com> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'bash-completion/ionice')
-rw-r--r--bash-completion/ionice1
1 files changed, 1 insertions, 0 deletions
diff --git a/bash-completion/ionice b/bash-completion/ionice
index 3a01c5125..1b1c5fe0a 100644
--- a/bash-completion/ionice
+++ b/bash-completion/ionice
@@ -30,6 +30,7 @@ _ionice_module()
return 0
;;
esac
+ local IFS=$'\n'
compopt -o filenames
COMPREPLY=( $(compgen -f -- $cur) )
return 0