Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
filipandren committed Apr 12, 2024
0 parents commit eccc914
Show file tree
Hide file tree
Showing 27 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Word Input
HTD Test Case and extensions Word files.

### Funding acknowledment

<img alt="European Flag" src="https://erigrid2.eu/wp-content/uploads/2020/03/europa_flag_low.jpg" align="left" style="margin-right: 10px"/> The development of test-case-descriptions-excel-input has been supported by the [ERIGrid 2.0](https://erigrid2.eu) project of the H2020 Programme under [Grant Agreement No. 870620](https://cordis.europa.eu/project/id/870620)
27 changes: 27 additions & 0 deletions get_next.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/bash
set -o nounset

owner_url=$1
repo_name=$2
latest_url=$(wget https://github.com/${owner_url}/${repo_name}/releases/latest --max-redirect=0 2>&1 | grep Location)
prefix="Location: https://github.com/${owner_url}/${repo_name}/releases/tag/"
suffix=" [following]"
tail=${latest_url#"$prefix"}
release_version=${tail%"$suffix"}
major=`echo $release_version | cut -d. -f1`
minor=`echo $release_version | cut -d. -f2`
revision=`echo $release_version | cut -d. -f3`
found_untagged_version=false
check_version=0.0.0
while ! $found_untagged_version;
do
revision=`expr $revision + 1`
check_version=${major}.${minor}.${revision}
check_url=https://github.com/${owner_url}/${repo_name}/releases/tag/$check_version
check=$(wget $check_url &> /dev/null)
if [ $? == 8 ];
then
found_untagged_version=true
fi
done
echo $check_version
Binary file added word-input/ERIGrid 2.0/TC01/TC01.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC02/TC02.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC03/TC03.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC04/TC04.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC05/TC05.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC06/TC06.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC07/TC07.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC08/TC08.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC09/TC09.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC10/TC10.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC11/TC11.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC12/TC12.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC13/TC13.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC14/TC14.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC15/TC15.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC16/TC16.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC17/TC17.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC18/TC18.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC19/TC19.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC20/TC20.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC21/TC21.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC22/TC22.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC23/TC23.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC24/TC24.docx
Binary file not shown.
Binary file added word-input/ERIGrid 2.0/TC25/TC25.docx
Binary file not shown.

0 comments on commit eccc914

Please sign in to comment.