TEXT   56
forever
Guest on 7th March 2023 01:43:07 PM


  1. #! /bin/zsh
  2.  
  3. its=0
  4.  
  5. while true; do
  6.     its=$(( $its + 1 ))
  7.     echo "infinite loop... ($its)"
  8.     sleep 1
  9. done

Raw Paste

Login or Register to edit or fork this paste. It's free.