You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
875 B
Python
31 lines
875 B
Python
#!/usr/bin/env python3
|
|
|
|
|
|
def cat_search():
|
|
|
|
print(""" ,-. _,---._ __ / \ """)
|
|
print(""" / ) .-' `./ / \ """)
|
|
print("""( ( ,' `/ /|""")
|
|
print(""" \ `-" \ \ / |""")
|
|
print(""" `. , \ \ / |""")
|
|
print(""" /`. ,'-`----Y |""")
|
|
print(""" ( ; cat | '""")
|
|
print(""" | ,-. ,-' search | /""")
|
|
print(""" | | ( | for IP | /""")
|
|
print(""" ) | \ `.___________|/""")
|
|
print(""" `--' `--" """"")
|
|
|
|
def cat_done():
|
|
print(""" /\ /|""")
|
|
print(""" { `---' }""")
|
|
print(""" { O O }""")
|
|
print(""""~~> V <~~""")
|
|
print(""" \ \|/ /""")
|
|
print(""" `-----'____""")
|
|
print(""" / \ \_""")
|
|
print(""" { }\ )_\_ _""")
|
|
print(""" | \_/ |/ / \_\_/ )""")
|
|
print(""" \__/ /(_/ \__/""")
|
|
print(""" (__/""")
|
|
print("All Done!")
|