Browse Source

Fix Find Command For Symbolic Links

old-stable
Mitesh Shah 12 years ago
parent
commit
6f5781caba
  1. 2
      etc/bash_completion.d/ee

2
etc/bash_completion.d/ee

@ -51,7 +51,7 @@ EEAUTO()
;; ;;
disable) disable)
COMPREPLY=( $( compgen -W '$(command find /etc/nginx/sites-enabled/ -type f -printf "%P " 2>/dev/null)' -- $CURRENT ) ) COMPREPLY=( $( compgen -W '$(command find /etc/nginx/sites-enabled/ -type l -printf "%P " 2>/dev/null)' -- $CURRENT ) )
return 0 return 0
;; ;;

Loading…
Cancel
Save