Skip to content

Instantly share code, notes, and snippets.

View AggamR's full-sized avatar

Aggam Rahamim AggamR

View GitHub Profile
@AggamR
AggamR / getMsFontsIso.sh
Created July 15, 2021 15:38
get ms fonts from a windows 10 iso
#!/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
@fnky
fnky / ANSI.md
Last active May 11, 2024 15:34
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27