方式一

my @filelist = glob “/root/*”;

不給陣列的話,這樣子就可以直接列出檔案了

print while </root/*>;

也可以

while (</root/*>) {print;};

方式二

my @filelist = </root/*>;

列出檔案

foreach my $file (@filelist) {
print “$file”;
}

http://docstore.mik.ua/orelly/perl/prog3/ch02_11.htm

Related posts 相關文章
2020 年迎來了 PHP 8 與 Perl 7
More...
安裝 perl 5.8.1 版本 – 草記
More...
perl 備註
More...
perl 隨機產生 password 密碼
More...

作者

留言

撰寫回覆或留言

發佈留言必須填寫的電子郵件地址不會公開。