From 5ced0cf3fe8bece321cf242cc480337631aa066a Mon Sep 17 00:00:00 2001 From: Mateusz Piwowarski Date: Sun, 24 Mar 2024 12:30:04 +0100 Subject: [PATCH] Jenkins --- stats.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/stats.sh b/stats.sh index 5b58174..546c605 100644 --- a/stats.sh +++ b/stats.sh @@ -1,10 +1,12 @@ #!/bin/bash +ls -al + # Count the number of lines in the original dataset -wc -l < creditcard_shuf.csv > stats.txt +wc -l < data/creditcard_shuf.csv > stats.txt # Count the number of lines in the training and testing datasets -wc -l < creditcard_train.csv > stats_train.txt -wc -l < creditcard_test.csv > stats_test.txt +wc -l < data/creditcard_train.csv > stats_train.txt +wc -l < daya/creditcard_test.csv > stats_test.txt # Create a directory for the data mkdir -p data