diff options
| author | Sami Kerola <kerolasa@iki.fi> | 2017-04-02 16:50:42 +0100 |
|---|---|---|
| committer | Sami Kerola <kerolasa@iki.fi> | 2017-04-02 16:51:00 +0100 |
| commit | 70ca1a77721b41f2355eeb00d4e55e13dba3e313 (patch) | |
| tree | 9f262b680e64e7af888f9bbebb7974a87352d10d /bash-completion/tailf | |
| parent | eff2c9a42621b4cba81a81bc78f431b00e8a2968 (diff) | |
| download | util-linux-70ca1a77721b41f2355eeb00d4e55e13dba3e313.tar.gz | |
tailf: remove deprecated utility
March 2017 is gone, it is time to remove this utility as scheduled in
earlier commit, and promised in manual page.
Reference: 3f8478a71ccde6883d4c81b7e65561a106653b28
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'bash-completion/tailf')
| -rw-r--r-- | bash-completion/tailf | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/bash-completion/tailf b/bash-completion/tailf deleted file mode 100644 index 0d4c869c09..0000000000 --- a/bash-completion/tailf +++ /dev/null @@ -1,28 +0,0 @@ -_tailf_module() -{ - local cur prev OPTS - COMPREPLY=() - cur="${COMP_WORDS[COMP_CWORD]}" - prev="${COMP_WORDS[COMP_CWORD-1]}" - case $prev in - '-n'|'--lines') - COMPREPLY=( $(compgen -W "number" -- $cur) ) - return 0 - ;; - '-h'|'--help'|'-V'|'--version') - return 0 - ;; - esac - case $cur in - -*) - OPTS="--lines --version --help" - COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) - return 0 - ;; - esac - local IFS=$'\n' - compopt -o filenames - COMPREPLY=( $(compgen -f -- $cur) ) - return 0 -} -complete -F _tailf_module tailf |
