remove util script, fix symbols

This commit is contained in:
azpsen
2024-01-29 08:39:18 -06:00
parent e7a0783c26
commit e9ce921f52
3 changed files with 3 additions and 17 deletions

View File

@@ -1,16 +0,0 @@
#!/bin/bash
# Loop through each subdirectory
for dir in */; do
# Navigate into the subdirectory
cd "$dir" || continue
# Find all .sh files and move them to the parent directory
find . -type f -name "*.sh" -exec mv {} .. \;
# Delete all other files and directories
rm -rf *
# Go back to the parent directory
cd ..
done