extracted labels

This commit is contained in:
Armin Briegel
2021-04-20 16:31:52 +02:00
parent 24b8b435b6
commit 448a11a1b6
270 changed files with 6562 additions and 2 deletions

14
assembleScript.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/zsh
destination_file="Installomator_assembled.sh"
fragments_dir="fragments"
labels_dir="$fragments_dir/labels"
# read the header
cat "$fragments_dir/header.txt" > $destination_file
# all the labels
cat "$labels_dir"/*.txt >> $destination_file
# add the footer
cat "$fragments_dir/footer.txt" >> $destination_file