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 | |
| set -e | |
| GREEN="\e[32m" | |
| YELLOW="\e[33m" | |
| RED="\e[31m" | |
| RESET="\e[0m" | |
| log() { echo -e "${GREEN}[✔]${RESET} $1"; } | |
| warn() { echo -e "${YELLOW}[!]${RESET} $1"; } |
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
| ngl = Not Gonna Lie = Ich werde nicht lügen | |
| fr = For Real = wirklich | |
| tbh = To Be Honest = ehrlich gesagt | |
| asap = As soon as possible = So bald wie möglich | |
| afk = Away from Keyboard = Nicht an der Tastatur | |
| btw = By the way = Übrigens | |
| eod = End of discussion = Ende der Diskussion | |
| fyi = For your information = Für Ihre Information | |
| afk = Away from Keyboard = Nicht am Computer | |
| afaik = As far as i know = Soweit ich weiß |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Redirecting...</title> | |
| <meta HTTP-EQUIV="REFRESH" content="0; url=/newurl"> | |
| <link rel="canonical" href="/newurl" /></head> | |
| <body> | |
| <a href="/newurl">Click here if you are not redirected automatically.</a></body> | |
| </html> |