From 6f5781caba6713c9af9cc8b31eea12cc14af199f Mon Sep 17 00:00:00 2001 From: Mitesh Shah Date: Mon, 8 Jul 2013 15:45:35 +0530 Subject: [PATCH] Fix Find Command For Symbolic Links --- etc/bash_completion.d/ee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/bash_completion.d/ee b/etc/bash_completion.d/ee index 088bd0a4..5ab0b077 100644 --- a/etc/bash_completion.d/ee +++ b/etc/bash_completion.d/ee @@ -51,7 +51,7 @@ EEAUTO() ;; 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 ;;