Update README.md
Browse files
README.md
CHANGED
@@ -83,9 +83,7 @@ echo "All files downloaded."
|
|
83 |
# Loop through all zip files in the current directory
|
84 |
for file in *.zip; do
|
85 |
# Unzip each file into a directory with the same name as the zip file without the extension
|
86 |
-
|
87 |
-
unzip "$file" -d "${file%.zip}"
|
88 |
-
echo "${file} unzipped."
|
89 |
done
|
90 |
|
91 |
echo "All files unzipped."
|
|
|
83 |
# Loop through all zip files in the current directory
|
84 |
for file in *.zip; do
|
85 |
# Unzip each file into a directory with the same name as the zip file without the extension
|
86 |
+
unzip "${file%.zip}"
|
|
|
|
|
87 |
done
|
88 |
|
89 |
echo "All files unzipped."
|