ium_z487174/s487174-dataset-stats.sh

9 lines
203 B
Bash
Raw Normal View History

2023-06-30 20:51:58 +02:00
#!/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