dodanie countera

This commit is contained in:
alicja.m.musial 2020-04-03 13:17:26 +02:00
parent 086e894fdb
commit 8041f9f54c
2 changed files with 6 additions and 0 deletions

4
Jenkinsfile vendored
View File

@ -13,5 +13,9 @@ pipeline {
copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './'
}
}
stage('Count words') {
steps {
sh label: '', script: './count.sh wikiniews_results.tsv'
}
}
}

2
count.sh Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
wc -l $1 > wynikZad1.txt