8 lines
101 B
Bash
Executable File
8 lines
101 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for folder in ./* ; do
|
|
if [ -d "$folder" ]; then
|
|
rm -rf $folder
|
|
fi
|
|
done
|