Add 's487174-dataset-stats.sh'

This commit is contained in:
Tomasz Koszarek 2023-06-30 20:51:58 +02:00
parent 29f1b69b63
commit 3a43bc8c86

9
s487174-dataset-stats.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# script ilość linii w wejściowym pliku
artifact_path="/app/data/Car_sale_ads.csv"
if [ -f "$artifact_path" ]; then
wc -l < "$artifact_path"
else
echo "Not found artifact file"
fi