mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
174 B
Perl
13 lines
174 B
Perl
4 years ago
|
#! /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;
|