LogIn E-mail
¼³°èÀ̾߱â
foreach, while each, dos2unix.pl, next last
# 8 JMJS    09.4.24 15:30

%cat d2u.pl
#!/usr/bin/perl
foreach $a (`ls`) {
        if(`file $a` =~ /text|script/) {
                `dos2unix $a`;
        }
}


%cat foreach.pm
        foreach $key (sort keys %FORM) {
                $aline = "$key $FORM{$key}<BR>";
                push(@html_lines,$aline);
        }

%cat while_each.pl
#!/usr/bin/perl
package main;
&nameLister("1","Jamie","2","Jinsung");

sub nameLister {
        my %this = @_;
        my ($keys, $value);
        while( ($key,$value) = each (%this)) {
                print "\t$key is $value.\n";
        }
}
%perl while_each.pl
        1 is Jamie.
        2 is Jinsung.
%
- for
C ¿Í °ÅÀÇ µ¿ÀÏÇÏ´Ù.
for ($i = 0; $i < 10; ++$i) {
if ($i <5 )
{
# continue ¹®Àå ´ë½Å next
next;
}
elsif ($i == 8)
{
# break ¹®Àå ´ë½Å last
last;
}
print "$i\n";
}

´ÙÀ½ ¹®¹ýµµ °¡´É
foreach my $i (`ls`)
{
print ("$i\n");
}


- while
print "Password? ";
$a = <STDIN>;
chop $a;
# °³Ç๮ÀÚ Á¦°Å
while ($a ne "fred")
{
print "sorry. Again? ";
$a = <STDIN>; chop $a;
}

- do
do
{
print "Password? ";
$a = <STDIN>;
chop $a;
} while ($a ne "fred");

- if
if (!$a)
{
print "The string is empty\n";
}
elsif (length($a) == 1)
{
print "The string has one character\n";
}
elsif (length($a) == 2)
{
print "The string has two characters\n";
}
else
{
print "The string has lots of characters\n";
}  
 

°Ô½Ã¹°: 115 °Ç, ÇöÀç: 1 / 1 ÂÊ
¹øÈ£ Á¦       ¸ñ ÀÛ¼ºÀÚ µî·ÏÀÏ ¹æ¹®
115  perl format JMJS 24.6.22 276
114  perl -p -i -e s/abc/def/g JMJS 24.3.26 310
113  Deleting from a Hash , defined , exists JMJS 25.7.9 306
112  yaml file Àбâ JMJS 23.11.30 350
111  alzipcon JMJS 22.11.26 391
110  file2date.pl JMJS 24.6.1 517
109  UTF-8, EUC-KR JMJS 19.12.15 475
108  wget.pl LWP Simple get JMJS 19.9.17 498
107  X JMJS 19.9.17 498
106  X JMJS 19.9.17 496
105  X JMJS 19.9.17 485
104  X JMJS 19.9.17 486
103  X JMJS 19.9.17 484
102  X JMJS 19.9.17 485
101  gnome-terminal JMJS 25.7.3 497
100  jsame.pl JMJS 09.5.21 2011
99  jos.pl JMJS 08.11.29 1744
98  jmngr.pl - jmjspro manager JMJS 08.11.29 1781
97  vhdl.pm JMJS 08.11.29 1758
96  jreg.pl JMJS 08.11.29 1739
95  jtree.pm JMJS 08.11.29 1819
94  w2c.pl JMJS 08.11.29 1778
93  jdread.pl JMJS 08.11.29 1556
92  ffile.zip ffilediff.pl JMJS 09.4.24 1604
91  rgb2ycbcr.pl JMJS 10.5.12 1916
90  proview.pl JMJS 08.11.29 1993
89  smi_shift.pl JMJS 10.10.3 1585
88  srt2smi.pl srtshift.pl JMJS 18.7.14 1783
87  Perl CGI Input Test, getenv.cgi JMJS 18.11.21 1480
86  hash JMJS 24.6.22 1728
85  tr a-z A-Z ġȯ , ´ë¼Ò¹®ÀÚ º¯È¯ , ¹®ÀÚ¿­ Á¶°Ç , ... JMJS 24.6.22 1531
84  JARRAY->jfunc JMJS 08.10.2 1488
83  ¼öÄ¡ÇÔ¼ö - ... JMJS 09.5.7 1997
82  ¿ªÇà·Ä3x3 JMJS 09.5.7 2009
81  hex2int.pl JMJS 10.9.12 2741
80  stat - file status º¸±â JMJS 07.12.16 1608
79  Perl Tip JMJS 24.6.22 2766
78  SMI file sync delay JMJS 07.7.18 1699
77  rmword.pl JMJS 07.6.18 1622
76  pack unpack JMJS 24.6.22 1528
75  [Perl]read_dir.pl JMJS 07.2.22 1819
74  [Perl]jtab2char - tab¹®ÀÚ¸¦ ƯÁ¤ char·Î ¹Ù²ãÁÖ±â JMJS 07.2.22 1803
73  Perl ¼ýÀÚ Sorting JMJS 11.5.17 1868
72  [CGI]GET and POST JMJS 06.11.20 3525
71  Perl Grammer JMJS 06.9.4 3100
70  Ç¥ÁØ ¸ðµâ JMJS 06.8.10 1997
69  Getopt::Long example JMJS 06.8.10 2190
68  array of array JMJS 06.4.22 1601
67  [HTML]Å×ÀÌºí ¹è°æ¿¡ ±×¸²³Ö±â JMJS 06.3.8 1693
66  l2w.pm - line to word JMJS 08.12.1 1687
65  make_random_chars JMJS 05.8.10 1520
64  mail º¸³»´Â script JMJS 05.3.23 1493
63  ½ÇÇàÆÄÀÏÀ» ½ÇÇà½Ã۰í Ç¥ÁØ¿¡·¯ Àбâ JMJS 09.2.25 1501
62  ÆË¾÷â(°øÁöâ)¶ç¿ì±â Jinsung 03.12.16 2588
61  print <<ENDLINE JMJS 03.12.5 1596
60  [HTML]Target JMJS 03.5.21 1622
59  [Perl]jutil.pm JMJS 03.5.3 1875
58  [Perl]jdiff.pl JMJS 02.6.6 1782
57  [Perl]cfilter.pm - commant filter JMJS 02.1.31 1816
56  [HTML]ÀÚµ¿À¸·Î ´Ù¸¥ ÆäÀÌÁö À̵¿ JMJS 02.1.19 1638
55  STDIN file open glob -w warning JMJS 24.6.22 1680
54  opendir , readdir , closedir JMJS 24.6.22 1678
53  rand_diff JMJS 01.10.23 1570
52  vcd2v.pl JMJS 15.8.25 1657
51  file upload JMJS 24.6.22 1599
50  umask(070) <- chmod o-rwx Áø¼º 01.3.16 1749
49  head2index Áø¼º 01.3.15 1450
48  grep.pl JMJS 11.1.20 1574
47  chr(13) = \M Áø¼º 01.3.15 1437
46  stty JMJS 01.3.12 1549
45  des.pl JMJS 01.3.8 1517
44  chr_plus.pl JMJS 01.3.8 1526
43  get passwd in unix JMJS 19.8.18 1369
42  unsort JMJS 19.9.10 1614
41  read from website web JMJS 19.5.15 1412
40  vec JMJS 01.3.8 1672
39  chomp $_ @_ say defined use 5.010 state grep any ... JMJS 18.10.27 1592
38  [Perl Tk] µµ½ºÃ¢ ¾øÀÌ, ÆÞ Tk ½ºÅ©¸³Æ® ½ÇÇàÇϱâ; ... JMJS 17.9.30 1555
37  @bs = sort {$a <=> $b} @as; JMJS 17.7.12 1622
36  if ( -e -z -s -f -d -T -B -M ) JMJS 16.3.10 1724
35  mkmm.pl - make freemind JMJS 12.5.22 1662
34  perl -pi.orig -e "s/\bu_(\w+_t)\b/u$1/g" *.c JMJS 11.8.26 1646
33  .xls output csv ÆÄÀÏ¿¡ \n "°¡ ÀÖÀ»¶§ JMJS 11.4.13 1538
32  jdcat.pl juncat.pl JMJS 11.2.24 1702
31  print chr(ord('a')); JMJS 01.3.8 1603
30  require "/user/home/jin1/jin1.pm"; JMJS 00.11.28 1539
29  for(my $i=0; $i < @abc; $i ++) {} JMJS 00.11.15 1624
28  remove blank $abc =~ s/[\s]+//g; Á¤±ÔÇ¥Çö½Ä ... JMJS 25.7.16 1572
27  array and for JMJS 00.11.14 1408
26  È¨ÆäÀÌÁö ÀÚµ¿ À̵¿ JMJS 00.10.28 1475
25  html¿¡¼­ ¾²ÀÌ´Â ±âȣǥ½Ã¹æ¹ý JMJS 00.9.30 1425
24  ¹è¿­ÀÇ ¹üÀ§ ¿¬»êÀÚ JMJS 00.9.20 1728
23  for(1..3) { print "$_";} JMJS 09.4.24 1394
22  package JMJS 24.6.22 1474
21  ÁÙ¿¡¼­ ÇѱÛÀÚ °íÄ¡±â JMJS 00.8.7 1532
20  hotkey function by getc JMJS 00.7.21 1628
19  read, sysread, syswrite JMJS 00.7.21 2442
18  crypt JMJS 00.7.13 1729
17  csv2gan.pl JMJS 11.4.4 1740
16  hexa JMJS 24.6.18 1572
15  file in out.pl JMJS 00.7.5 1753
14  ARGV JMJS 00.7.5 1580
13  jtime.pm - localtime, timelocal JMJS 09.4.9 2106
12  @INC JMJS 00.7.5 1941
11  $#myarray JMJS 00.7.5 1692
10  Hash of Array JMJS 00.7.5 1518
9  package JARRAY JHASH JMJS 00.7.4 1763
8  foreach, while each, dos2unix.pl, next last JMJS 09.4.24 1746
7  base64 enc dec binary JMJS 25.6.30 1548
6  file lock JMJS 00.7.4 1651
5  gettime JMJS 00.7.4 1641
4  [Perl]jcdread.pl JMJS 00.7.4 1718
3  [Perl]jdread.pl JMJS 00.7.4 1614
2  Monti Hall problem JMJS 24.6.27 1604
1  DESTROY JMJS 09.7.20 1546
[1]