Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #!/bin/bash | |
| echo -e "Hello! this is a shell script to help you get microsoft fonts straight from a Windows 10 ISO. \nThis can be used for any language." | |
| [ "$EUID" -ne 0 ] && echo "Please run this script as root." | |
| [ ! -x "$(command -v 7z)" ] && echo "You need 7z installed in order for the scipt to run" | |
| echo enter iso file path: | |
| read ISOPATH |