開発環境
- macOS Mojave - Apple (OS)
- Emacs (Text Editor)
- Windows 10 Pro (OS)
- Strawberry Perl (WindowsのPerlの言語処理系)
- Visual Studio Code (Text Editor)
- Perl 5.28 (プログラミング言語)
初めてのPerl 第7版 (Randal L. Schwartz(著)、brian d foy(著)、Tom Phoenix(著)、近藤 嘉雪(翻訳)、嶋田 健志(翻訳)、オライリージャパン)の16章(上級テクニック)、16.6(練習問題)2の解答を求めてみる。
コード
#!/usr/bin/env perl
use strict;
use warnings;
use v5.28;
say '2.';
foreach (<.* *>) {
printf "%-20s %20d %20d\n", $_, (stat $_)[8, 9];
}
入出力結果(Zsh、PowerShell、Terminal)
% ./sample2.pl
2.
. 1592048698 1592048692
.. 1591969575 1591969572
output.txt 1591970511 1591970476
sample1.pl 1591974601 1591970354
sample2.pl 1592049152 1592049151
sample_text.txt 1591969591 1591969590
%
0 コメント:
コメントを投稿