Perl until loop FAQ: Can you share some examples of the Perl until loop syntax?
The Perl until loop is similar to the Perl while loop, but essentially does the opposite thing. Where the Perl while operator will run this loop forever:
while ('true')
{
# do stuff here
}
the Perl until loop will never run this loop: