#!/usr/bin/env perl use strict; use warnings; my $text = "My name is %s\n"; my @args = qw/John peter jessus/; printf $text, $_ for @args;