#!/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.
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.
'[+] 유틸리티' 카테고리의 다른 글
Cygwin : UNIX 에뮬레이터 (0) | 2009.01.29 |
---|---|
IP Random 생성 : IP Random generation (0) | 2009.01.29 |
라인 줄 수를 세어주는 perl 소스코드 : Count the number of line to line perl source code (4) | 2009.01.29 |
IP Scanner (4) | 2009.01.28 |