2013年8月11日日曜日

開発環境

『初めてのPerl 第6版』(Randal L. Schwartz, Tom Phoenix, brian d foy 共著、近藤 嘉雪 訳、オライリー・ジャパン、2012年、ISBN978-4-87311-567-2)の12章(ファイルテスト)の12.5(練習問題)3を解いてみる。

その他参考書籍

3.

コード(BBEdit)

sample.pl

#!/usr/bin/env perl
use strict;
use warnings;
use 5.016;
use utf8;
binmode STDOUT, ':utf8';
binmode STDIN, ':utf8';

for (@ARGV) {
    say $_ if -o -w -r -e $_;
}

入出力結果(Terminal)

$ ./sample.pl *
Gilligan:
Ginger:
Lovey:
MaryAnn:
MonkeyMan:
Oogaboogoo
Professor:
Skipper:
Thurston:
__pycache__
coconet.dat
coconet_total.dat
coconet_total_2.dat
date.log
date.txt
distribute-0.6.34.tar.gz
gilligan.info
ginger.info
hello_world.pl
html
link_test
ln.txt
ln1.txt
log
log_file.txt
lovey.info
ls.err
ls.out
maryann.info
monkeyman.info
perl_kamimura_blog
perl_kamimura_blog.html
perl_program1
professor.info
result
sample
sample.pl
sample.py
sample.txt
sample_folder
skipper.info
some_folder
standings.db
test.out
test.py
test.txt
test.txt.out
test_folder
test_link
thurston.info
tmp.txt
tmp_folder
total_bytes.dat
untitled text 2.txt
$

0 コメント:

コメントを投稿