Skip to content

Instantly share code, notes, and snippets.

View kyb3rcipher's full-sized avatar
🏴
# echo -e "o\nn\np\n1\n\n\nw" | fdisk /dev/sda && mkfs.ext4 /dev/sda1; reinstall

Kyb3r Cipher ✪ kyb3rcipher

🏴
# echo -e "o\nn\np\n1\n\n\nw" | fdisk /dev/sda && mkfs.ext4 /dev/sda1; reinstall
View GitHub Profile
@kyb3rcipher
kyb3rcipher / colors.sh
Last active April 14, 2024 16:51
Shell scripting colors
# Colours
resetColor="\e[0m\e[0m"
redColor="\e[0;31m\e[1m"
blueColor="\e[0;34m\e[1m"
cyanColor="\e[01;96m\e[1m"
grayColor="\e[0;37m\e[1m"
greenColor="\e[0;32m\e[1m"
magentaColor="\e[0;35m\e[1m"
yellowColor="\e[0;33m\e[1m"
turquoiseColor="\e[0;36m\e[1m"