ium_z487174/s487174-dataset-stats.sh

9 lines
203 B
Bash

#!/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