-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gebruikers zullen nu standaard 2 templates krijgen
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
#@param | ||
# Vul hieronder de namen van de bestanden in die je in de gezipte folder wilt vinden. | ||
file_name="verslag.pdf" | ||
|
||
|
||
if [ -e "$file_name" ]; then | ||
echo "$file_name present: OK" | ||
else | ||
echo "$file_name not present: FAIL" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
#@param | ||
# Vul hieronder de namen van de bestanden in die je in de gezipte folder wilt vinden. | ||
file_names=( "testfile1.txt" "testfile2.txt" ) | ||
|
||
#@param | ||
# Vul hieronder de naam van het zip bestand waarin je de files wil vinden | ||
zip_file_name="file.zip" | ||
|
||
|
||
for file_name in "${file_names[@]}"; do | ||
unzip -l $zip_file_name | grep -q $file_name; | ||
if [ "$?" == "0" ] | ||
then | ||
echo "$file_name present: OK" | ||
else | ||
echo "$file_name not present: FAIL" | ||
fi; | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters