Zadanie 1

This commit is contained in:
Karolina Krzywda 2020-04-03 14:41:39 +02:00
parent c8a4eb74ed
commit f72dee732b
2 changed files with 13 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}

3
script.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
cat $1 | wc -l > results.txt