• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/util/
1#!/usr/bin/perl
2
3while(<STDIN>) {
4	if (/=for\s+comment\s+openssl_manual_section:(\S+)/)
5		{
6		print "$1\n";
7		exit 0;
8		}
9}
10
11print "$ARGV[0]\n";
12
13