ium_z487175/s487175-dataset-stats-script.sh
2023-06-06 22:40:43 +02:00

9 lines
194 B
Bash

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