Paste-bin.xyz
Archive
Sign In
Login
Register
Username
Current Password
Keep me signed in.
Username
Full Name
Email
New Password
TEXT
56
forever
Guest on 7th March 2023 01:43:07 PM
#! /bin/zsh
its=0
while true; do
its=$(( $its + 1 ))
echo "infinite loop... ($its)"
sleep 1
done
Raw Paste
#! /bin/zsh its=0 while true; do its=$(( $its + 1 )) echo "infinite loop... ($its)" sleep 1 done
Login
or
Register
to edit or fork this paste. It's free.