2020年5月27日水曜日

開発環境

初めてのPerl 第7版 (Randal L. Schwartz(著)brian d foy(著)Tom Phoenix(著)近藤 嘉雪(翻訳)嶋田 健志(翻訳)、オライリージャパン)の12章(ファイルテスト)、12.5(練習問題)3の解答を求めてみる。

コード

#!/usr/bin/env perl
use strict;
use warnings;
use v5.28;

die "usage: <filename> [filename...]" unless @ARGV;

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

入出力結果(Zsh、PowerShell、Terminal)

% ./sample3.pl 
usage: <filename> [filename...] at ./sample3.pl line 6.
% ./sample3.pl a
% ./sample3.pl temp/*    
temp/temp1.txt
temp/temp3.txt
temp/temp4.txt
temp/temp5.txt
% ls temp/* 
temp/temp1.txt temp/temp2.txt temp/temp3.txt* temp/temp4.txt temp/temp5.txt
% ./sample3.pl temp/* temp
temp/temp1.txt
temp/temp3.txt
temp/temp4.txt
temp/temp5.txt
temp
%

0 コメント:

コメントを投稿