Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1b - Decimal:
27
| --2022-04-07 08:43:09-- https://raw.githubusercontent.com/cryinkfly/Autodesk-Fusion-360-for-Linux/main/files/builds/stable-branch/bin/build-version.txt | |
| SSL_INIT | |
| Loaded CA certificate '/etc/ssl/certs/ca-certificates.crt' | |
| Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.109.133, 185.199.111.133, 185.199.110.133, ... | |
| Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.109.133|:443... connected. | |
| HTTP request sent, awaiting response... 200 OK | |
| Length: 20 [text/plain] | |
| Saving to: ‘/home/tb/.config/fusion-360/bin/build-version.txt’ | |
| build-version.txt 100%[===================>] 20 --.-KB/s in 0s |
| #!/bin/sh | |
| DESC="JDownloader 2 Headless" | |
| NAME=JDownloader2 | |
| PIDFILE=/var/run/$NAME.pid | |
| COMMAND="/usr/bin/java -- -Djava.awt.headless=true -jar /home/osmc/jDownloader2/JDownloader.jar" | |
| RUN_AS=osmc | |
| d_start() { | |
| start-stop-daemon --start --quiet --background --make-pidfile --pidfile $PIDFILE --chuid $RUN_AS --exec $COMMAND |