my $os = `uname -s`; # why capital? chomp $os; # get rid of the EOL character, you'll be glad you did. printf "Operating system: %s\n",$os; if ( $os eq 'SunOS' ) { # this is where EOL needs to be gone... &< snip! &<