Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| #!/bin/sh | |
| # | |
| # For installing NixOS having booted from the minimal USB image. | |
| # | |
| # To run: | |
| # | |
| # sh -c "$(curl https://eipi.xyz/nixinst.sh)" | |
| # | |
| # https://eipi.xyz/blog/nixos-x86-64 |