chore(rc,profile,aliases,completion,libs,functions): Remove shebangs from sourced files

These files are always sourced (never executed directly), so the
#!/bin/bash shebang is inert and misleading. Drop it consistently
across rc.d/*, profile.d/*, and aliases.d/*.
This commit is contained in:
2026-08-22 00:52:02 +02:00
parent 7000bde368
commit 6a53ee36fd
77 changed files with 0 additions and 153 deletions
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v aws && command -v aws_completer) &>/dev/null; then
complete -C aws_completer aws
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v chezmoi &>/dev/null); then
source <(chezmoi completion bash)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v flux &>/dev/null); then
source <(flux completion bash)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v glab &>/dev/null); then
source <(glab completion)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v helm &> /dev/null)
then
source <( helm completion bash )
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v k3d &>/dev/null); then
source <(k3d completion bash)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v kind &>/dev/null); then
source <(kind completion bash)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v kubectl &> /dev/null)
then
source <(kubectl completion bash)
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v minikube &>/dev/null); then
source <(minikube completion bash)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v mise &>/dev/null); then
source <(mise completion bash --include-bash-completion-lib)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v podman &>/dev/null); then
source <(podman completion bash)
fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if ( command -v poetry &> /dev/null )
then
source <(poetry completions bash)
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v stern &> /dev/null)
then
source <(stern --completion bash)
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
if (command -v tea &>/dev/null); then
source <(tea completion bash)
fi