Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
pandas
License:
Advaith28 commited on
Commit
9530511
1 Parent(s): 6bca6bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -3
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
- echo "Unzipping ${file}..."
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."