Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Perl

Idiom #232 Read a command line boolean flag

Print "verbose is true" if the flag -v was passed to the program command line, "verbose is false" otherwise.

#!/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.
print("verbose is ${args.contains("-v")}");

New implementation...
< >
programming-idioms.org