Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
#!/bin/bash | |
# Install reflector | |
sudo pacman -S reflector | |
# Update mirrorlist | |
reflector | sudo tee /etc/pacman.d/mirrorlist | |