xref: /freebsd/crypto/openssl/util/echo.pl (revision aa1a8ff2d6dbc51ef058f46f3db5a8bb77967145)
1#! /usr/bin/env perl
2
3use strict;
4use warnings;
5use Getopt::Std;
6
7our $opt_n = 0;
8
9getopts('n') or die "Invalid option: $!\n";
10
11print join(' ', @ARGV);
12print "\n" unless $opt_n;
13