mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 04:25:11 -05:00
19 lines
496 B
Bash
19 lines
496 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
for file in *; do
|
||
|
# Check if it's a file (not a directory)
|
||
|
if [ -f "$file" ]; then
|
||
|
# Get filename without extension
|
||
|
dirname="${file%.*}"
|
||
|
|
||
|
# Create directory if it doesn't exist
|
||
|
if [ ! -d "$dirname" ]; then
|
||
|
mkdir "$dirname"
|
||
|
echo "Created directory: $dirname"
|
||
|
fi
|
||
|
|
||
|
# Move the file into its directory
|
||
|
mv "$file" "$dirname/"
|
||
|
echo "Moved $file to $dirname/"
|
||
|
fi
|
||
|
done
|