12 lines
322 B
Bash
12 lines
322 B
Bash
#!/bin/bash
|
|
|
|
# Pobieranie zbioru danych z Kaggle
|
|
kaggle datasets download -d iabhishekofficial/mobile-price-classification
|
|
unzip mobile-price-classification.zip -d dataset
|
|
|
|
# Przetwarzanie pliku
|
|
head -n 100 dataset/train.csv > temp.csv
|
|
cut -f 1,3,5 -d ',' temp.csv > output.txt
|
|
|
|
# Usuwanie plików tymczasowych
|
|
rm temp.csv |