Files
GmSSL/util/extract-section.pl
zhaoxiaomeng 53af3b51ae quantum init
2018-01-04 13:40:59 +08:00

13 lines
146 B
Perl

#!/usr/bin/perl
while(<STDIN>) {
if (/=for\s+comment\s+openssl_manual_section:(\S+)/)
{
print "$1\n";
exit 0;
}
}
print "$ARGV[0]\n";