Builder Changes to get Mariadb working

This commit is contained in:
2024-07-26 11:06:27 -07:00
parent 71c2ac8aa3
commit 2f1c6757c8
8 changed files with 35 additions and 47 deletions
-2
View File
@@ -1,11 +1,9 @@
#!/bin/bash
# List all directories in the current directory that don't start with an underscore
directories
directories=$(find . -maxdepth 1 -type d -not -name '_*' -exec basename {} \; | grep -v '[_\.]' | sort -r)
# Use fzf to allow the user to select a directory
selected_dir
selected_dir=$(echo "$directories" | fzf --prompt="Select a directory: ")
# Check if a directory was selected