From 502b97791498d4b1a6e00ab7868ac0983421d0ff Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Mon, 20 Sep 2021 12:29:15 +0000 Subject: Avoid using a misleading hashbang For consistency with other completion scripts and to silence warnings such as https://lintian.debian.org/tags/bash-completion-with-hashbang --- completions/bfs.bash | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/completions/bfs.bash b/completions/bfs.bash index c1353aa..939537e 100644 --- a/completions/bfs.bash +++ b/completions/bfs.bash @@ -1,4 +1,4 @@ -#!/hint/bash +# bash completion script for bfs ############################################################################ # bfs # @@ -17,8 +17,6 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # ############################################################################ -# bash completion script for bfs - _bfs() { local cur prev words cword _init_completion || return -- cgit v1.2.3 From 90db3bc945fd28106d2e55475cc14bb3beac2fa9 Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Mon, 20 Sep 2021 12:29:38 +0000 Subject: Trim excess whitespace --- completions/bfs.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/completions/bfs.bash b/completions/bfs.bash index 939537e..f734ab1 100644 --- a/completions/bfs.bash +++ b/completions/bfs.bash @@ -255,7 +255,7 @@ _bfs() { return ;; -user) - # -user NAME + # -user NAME # Find files owned by the user NAME COMPREPLY=($(compgen -u -- "$cur")) return -- cgit v1.2.3