Files
getpkg/dropshell-tool/openssl-1.1.1w/util/echo.pl
2025-05-28 19:34:06 +12:00

13 lines
174 B
Perl

#! /usr/bin/perl
use strict;
use warnings;
use Getopt::Std;
our $opt_n = 0;
getopts('n') or die "Invalid option: $!\n";
print join(' ', @ARGV);
print "\n" unless $opt_n;