kunlang_video/external/srs-server-5.0-r3/trunk/3rdparty/openssl-1.1-fit/util/echo.pl
2026-05-09 10:51:10 +08: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;