ium_z487175/s487175-dataset-stats-script.sh

9 lines
199 B
Bash

#!/bin/bash
# script ilość linii w wejściowym pliku
artifact_path="/app/dane/diamonds.csv"
if [ -f "$artifact_path" ]; then
wc -l < "$artifact_path"
else
echo "Not found artifact file"
fi