ium_z487175/s487175-dataset-stats-script.sh

9 lines
194 B
Bash
Raw Normal View History

2023-04-16 09:19:47 +02:00
#!/bin/bash
# script ilość linii w wejściowym pliku
2023-06-06 22:40:43 +02:00
artifact_path="/app/diamonds.csv"
2023-04-16 09:19:47 +02:00
if [ -f "$artifact_path" ]; then
wc -l < "$artifact_path"
else
echo "Not found artifact file"
2023-04-16 09:23:36 +02:00
fi