Filename: Private: No Yes Filetype: Auto ABAP Sophia Apex Azure CLI Batch Bicep C Cameligo Clojure CoffeeScript C++ C# CSP CSS Cypher Dart Dockerfile ECL Elixir Flow9 FreeMarker2 FreeMarker2 (Angle/Bracket) FreeMarker2 (Angle/Dollar) FreeMarker2 (Auto/Bracket) FreeMarker2 (Auto/Dollar) FreeMarker2 (Bracket/Bracket) FreeMarker2 (Bracket/Dollar) F# Go GraphQL Handlebars Terraform HTML Ini Java JavaScript Julia Kotlin Less Lexon Liquid Lua Modula-3 Markdown MDX MIPS DAX MySQL Objective-C Pascal Pascaligo Perl PostgreSQL PHP Plain text ATS PQ PowerShell Protobuf Pug Python Q# R Razor Redis Redshift ReStructuredText Ruby Rust Small Basic Scala Scheme Sass Shell Solidity SPARQL SQL StructuredText Swift SV Tcl Twig TypeScript TypeSpec Visual Basic V WebGPU Shading Language XML YAML Indentation: Spaces Tabs 1 2 3 4 5 6 7 8 Clone #!/bin/bash sleep=0.15 s0="┗( ಠ‿ಠ )┛" s1="┗( ಠ‿ಠ )┓" s2="┏( ಠ‿ಠ )┓" s3="┏( ಠ‿ಠ )┛" width=`tput cols` height=`tput lines` width=$(( width / 2 - 10 )) height=$(( height / 2 - 1 )) trap 'echo -e "\033[?25h"; clear; exit' INT echo -ne "\033[?25l" clear x=0 while [[ ${x} -lt ${height} ]]; do echo x=$(( x + 1 )) done spaces=`printf "%${width}s"` while true; do sleep $sleep; echo -ne "\r${spaces}${s0}" sleep $sleep; echo -ne "\r${spaces}${s1}" sleep $sleep; echo -ne "\r${spaces}${s2}" sleep $sleep; echo -ne "\r${spaces}${s3}" done Paste