ium_z487175/s487175-dataset-stats-script.sh

11 lines
232 B
Bash
Raw Normal View History

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