mirror of https://github.com/openssl/openssl.git
				
				
				
			
		
			
	
	
		
			18 lines
		
	
	
		
			162 B
		
	
	
	
		
			Perl
		
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			162 B
		
	
	
	
		
			Perl
		
	
	
	
| 
								 | 
							
								#!/usr/local/bin/perl
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$num=1;
							 | 
						||
| 
								 | 
							
								$width=40;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								while (<>)
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
									chop;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									$i=length($_);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
									$n=$width-$i;
							 | 
						||
| 
								 | 
							
									$i=int(($n+7)/8);
							 | 
						||
| 
								 | 
							
									print $_.("\t" x $i).$num."\n";
							 | 
						||
| 
								 | 
							
									$num++;
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								
							 |