ium_z487175/s487175-dataset-stats-script.sh
2023-04-16 09:50:58 +02:00

11 lines
232 B
Bash

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