From 40f77b27d69d75a98a440924fa72332877acfb54 Mon Sep 17 00:00:00 2001 From: AdamOsiowy123 Date: Sun, 27 Mar 2022 17:43:45 +0200 Subject: [PATCH] add uncompress flag to unzip command --- download_dataset.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/download_dataset.sh b/download_dataset.sh index 069b732..54af3c2 100644 --- a/download_dataset.sh +++ b/download_dataset.sh @@ -1,4 +1,5 @@ #!/bin/bash kaggle datasets download -d shivamb/real-or-fake-fake-jobposting-prediction -unzip -o real-or-fake-fake-jobposting-prediction.zip | shuf | head -n $1 > dataset.csv \ No newline at end of file +ls +unzip -oc real-or-fake-fake-jobposting-prediction.zip | shuf | head -n $1 > dataset.csv \ No newline at end of file