#!/usr/bin/perl -s
use strict;
use warnings;
use vars qw($v);
$v ||= 0;
print 'verbose is ' . ($v ? 'true' : 'false') . "\n";
The 'use vars' is how you tell Perl that (because of the -s flag) you are getting $v from the command line's -v. If you don't do this (with strict mode on) you will get an error.