linux-tools/print_helpers.py
2020-08-01 20:16:21 +02:00

15 lines
292 B
Python

def print_fail(text):
print("\033[91m" + "[-] " + text + "\033[0m")
def print_gr(text):
print("\033[92m" + "[+] " + text + "\033[0m")
def print_warn(text):
print("\033[93m" + "[*] " + text + "\033[0m")
def print_blue(text):
print("\033[94m" + "[+] " + text + "\033[0m")