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