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
#ANSI CODES
#Code Effect
#0 All attributes off
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
function ip_to_hex ()
{
if test -e "$1" ; then echo "Usage : $0 XXX.XXX.XXX.XXX" ; return ; fi
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
note() {
# if file doesn't exist, create it
if [[ ! -f $HOME/.notes ]]; then
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
encpasswd() {
local password_clear=$1
local password_md5hash=$(openssl passwd -1 "$password_clear")
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
function ssh_clean_known_hosts() {
if [ -z "$1" ]; then
echo "No arguments given. Cleaning ~/.ssh/known_hosts"
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
function term_change_title {
case $TERM in
# Change the window title of X terminals
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
todo() {
if [[ ! -f $HOME/.todo ]]; then
touch $HOME/.todo
-2
View File
@@ -1,5 +1,3 @@
#!/bin/bash
function urxvt_set_font
{
# set font
-2
View File
@@ -1,4 +1,2 @@
#!/bin/bash
function prettyxml () { sed -e 's,>,>\n,g'; }