본문 바로가기

[+] 유틸리티

줄 번호 매겨주는 perl 소스 코드 : Perl source code line number attached


#!/usr/bin/perl
use strict; use warnings;

# made by MaJ3stY #

###################################################################

my $line = 1;

while (<>) {
 printf("%d: %s", $line, $_);
 $line++;
}


###################################################################


제가 perl 공부할때 잠깐잠깐 생각 났을때 짜본 것들 입니다.

perl이 정말 간단하고 쓰기가 편하긴 하네요 ^^;

사용방법은 간단합니다.

같은 경로에 소스코드와 대상파일을 넣고 소스코드를 컴파일 시켜주시면 됩니다.


Perl is what I do when studying coding.

It's really easy and comfortable writing perl. ^ ^;

How is simple.

On the same path to the source code and compile the source code to the file will be put.