Escape s handling, so the printf format string is preserved. - annna - Annna th… | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
commit 4228ac10f7b0a6780c649417b317a1b69a95db30 | |
parent e165194425e3aaeeb4a464b7e5fdf8e4c9168521 | |
Author: Annna Robert-Houdin <[email protected]> | |
Date: Fri, 11 Aug 2023 14:05:49 +0200 | |
Escape s handling, so the printf format string is preserved. | |
Diffstat: | |
M gitlab-vuxml-cronjob | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/gitlab-vuxml-cronjob b/gitlab-vuxml-cronjob | |
@@ -23,9 +23,9 @@ entrydate="$(curl -Ls "${vuxmluri}" \ | |
| tail -n 1)" | |
randinsult="$({ | |
- printf "Evil_Bob, haha, look at these gitlab losers: %s\n" | |
- printf "Evil_Bob, stagit is unaffected! gitlab vuln %s\n" | |
- printf "Evil_Bob, who is still using gitlab? %s\n" | |
+ printf "Evil_Bob, haha, look at these gitlab losers: %%s\n" | |
+ printf "Evil_Bob, stagit is unaffected! gitlab vuln %%s\n" | |
+ printf "Evil_Bob, who is still using gitlab? %%s\n" | |
} | shuf -n 1)" | |
if [ "$curdate" = "$entrydate" ] |