This file contains hidden or 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
#!/bin/bash | |
# | |
# escapeHTML.sh by Martin Wermers[1], 2018 | |
# Written for my answer on the StackOverflow question 'Include another HTML file in a HTML file': | |
# https://stackoverflow.com/questions/8988855/include-another-html-file-in-a-html-file/15250208#15250208 | |
# | |
# This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 | |
# International License. See https://creativecommons.org/licenses/by-sa/4.0 . | |
# | |
# Credits to Greg Minshall[2] for the improved sed command that also escapes |
This file contains hidden or 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
#!/bin/bash | |
# Benennt Dateinamen von Kontoauszügen der Deutschen Postbank in ein lesbares Format um. | |
# z.B.: "PB_KAZ_KtoNr_0123456789_01-02-2014_0343.pdf" --> "kontoauszug_2014-02-01.pdf" | |
# Allgemein: "PB_KAZ_KtoNr_0123456789_DD-MM-YYYY_0123.pdf" --> "kontoauszug_YYYY-MM-DD.pdf" | |
SRCPREFIX="PB_KAZ_KtoNr_" | |
SRCSUFFIX=".pdf" | |
DESTPREFIX="kontoauszug_" | |
DESTSUFFIX=".pdf" |
This file contains hidden or 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
# 'Git lord's prayer' by Martin Wermers, 2012 | |
# | |
# This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 | |
# International License. See https://creativecommons.org/licenses/by-nc-sa/3.0 . | |
Our Git in repository, | |
hallowed be your name. | |
Your init come, | |
your merge be done, | |
in master as on the branches. |