diff options
| author | David Paleino <dapal@debian.org> | 2013-04-05 12:55:51 +0200 |
|---|---|---|
| committer | David Paleino <dapal@debian.org> | 2013-04-05 12:55:51 +0200 |
| commit | 09dbe3eeb2e9695d171a63e14361c4099b5be978 (patch) | |
| tree | 69f099aab27e28b832e627de51ed2b99e3d7445c /completions/find | |
| parent | 0d099a545fed933f329f434a43b58edcb52d366c (diff) | |
| parent | 3085c7e12179817a02a611016606391295c69942 (diff) | |
| download | bash-completion-2.x.tar.gz | |
Merge branch 'master' into 2.x2.x
Diffstat (limited to 'completions/find')
| -rw-r--r-- | completions/find | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/completions/find b/completions/find index 2afb6fc9..1896fc22 100644 --- a/completions/find +++ b/completions/find @@ -56,8 +56,8 @@ _find() return 0 ;; -regextype) - COMPREPLY=( $( compgen -W 'emacs posix-awk posix-basic \ - posix-egrep posix-extended' -- "$cur" ) ) + COMPREPLY=( $( compgen -W 'emacs posix-awk posix-basic posix-egrep + posix-extended' -- "$cur" ) ) return 0 ;; esac @@ -77,17 +77,16 @@ _find() fi # complete using basic options - COMPREPLY=( $( compgen -W '-daystart -depth -follow -help \ - -ignore_readdir_race -maxdepth -mindepth -mindepth -mount \ - -noignore_readdir_race -noleaf -regextype -version -warn -nowarn \ - -xdev \ - -amin -anewer -atime -cmin -cnewer -ctime -empty -executable -false \ - -fstype -gid -group -ilname -iname -inum -ipath -iregex -iwholename \ - -links -lname -mmin -mtime -name -newer -nogroup -nouser -path -perm \ - -readable -regex -samefile -size -true -type -uid -used -user \ - -wholename -writable -xtype -context \ - -delete -exec -execdir -fls -fprint -fprint0 -fprintf -ls -ok -okdir \ - -print -print0 -printf -prune -quit' -- "$cur" ) ) + COMPREPLY=( $( compgen -W '-daystart -depth -follow -help + -ignore_readdir_race -maxdepth -mindepth -mindepth -mount + -noignore_readdir_race -noleaf -regextype -version -warn -nowarn -xdev + -amin -anewer -atime -cmin -cnewer -ctime -empty -executable -false + -fstype -gid -group -ilname -iname -inum -ipath -iregex -iwholename + -links -lname -mmin -mtime -name -newer -nogroup -nouser -path -perm + -readable -regex -samefile -size -true -type -uid -used -user + -wholename -writable -xtype -context -delete -exec -execdir -fls + -fprint -fprint0 -fprintf -ls -ok -okdir -print -print0 -printf -prune + -quit' -- "$cur" ) ) if [[ ${#COMPREPLY[@]} -ne 0 ]]; then # this removes any options from the list of completions that have |
