Skip to content

Latest commit

 

History

History
53 lines (46 loc) · 608 Bytes

demo.md

File metadata and controls

53 lines (46 loc) · 608 Bytes

Test

test bold italic

#!/bin/bash

# comment to make this file scroll
# comment to make this file scroll
# comment to make this file scroll
# comment to make this file scroll

set -u -o pipefail -u

# Array of ASCII art
ascii_art=(
"
  __
 /  \\
|  o |
 \\__/
  |||
"
"
   __
  (oo)
  (__)
  |  |
 //||\\\\
"
"
    _____
   /     \\
  | () () |
   \\  ^  /
    |||||
    |||||
"
"
 (\\(\\
 (-.-)
 o_(\")(\")
"
)

# Get a random number between 0 and the length of the array
random_index=$((RANDOM % ${#ascii_art[@]}))

# Print the random ASCII art
echo "${ascii_art[$random_index]}"