add line continuation character to _tcpdump(), or compgen will eat up all of

the memory on the system
This commit is contained in:
ianmacd 2002-02-13 15:54:03 +00:00
parent e3564a20ac
commit 0062836a54

View File

@ -1,6 +1,6 @@
# bash_completion - some programmable completion functions for bash 2.05a
#
# $Id: bash_completion,v 1.106 2002/02/13 16:46:15 ianmacd Exp $
# $Id: bash_completion,v 1.107 2002/02/13 16:54:03 ianmacd Exp $
#
# Copyright (C) Ian Macdonald <ian@caliban.org>
#
@ -1356,7 +1356,7 @@ _tcpdump()
COMPREPLY=()
cur=${COMP_WORDS[COMP_CWORD]}
COMPREPLY=( $( compgen -W 'host net port src dst ether gateway
COMPREPLY=( $( compgen -W 'host net port src dst ether gateway \
less greater' $cur ) )
}