deprecate unused scripts

Signed-off-by: Ferit Yiğit BALABAN <fyb@fybx.dev>
This commit is contained in:
2024-01-15 22:32:23 +03:00
parent b4565d76bb
commit 1dddc37e34
12 changed files with 22 additions and 0 deletions

24
deprecated/cdd.bash Executable file
View File

@@ -0,0 +1,24 @@
#!/usr/bin/env bash
#
# Ferit Yiğit BALABAN, <fybalaban@fybx.dev>
#
# cd on steroids for Johnny.Decimal directories
# Define the cdd function
cdd() {
local input="$1"
local folder="$(basename "$PWD")"
if [[ "$input" =~ ^[0-9]{3}\.[0-9]{2}$ ]]; then
cd "$HOME/shoka/*/*/$input *"
elif [[ "$input" =~ ^[0-9]{3}$ ]]; then
cd "$HOME/shoka/*/$input *"
elif [[ "$input" =~ ^[0-9]{2}$ && "$folder" =~ ^[0-9]{3} ]]; then
cd "$HOME/shoka/*/*/${folder:0:3}.$input *"
else
echo "Invalid input: $input"
fi
}
# Use the cdd function with the input argument
cdd "$1"