ium_470618/script.sh

8 lines
189 B
Bash
Raw Normal View History

2023-03-23 14:48:39 +01:00
echo 'starting script'
2023-03-23 14:37:46 +01:00
kaggle competitions download -c titanic
2023-03-23 14:48:39 +01:00
echo 'kaggle download completed'
2023-03-23 14:37:46 +01:00
unzip titanic.zip
wc -l train.csv
head -500 train.csv | shuf > output.txt
echo 'script done'