揮発性のメモ2

最近知った知識を さも昔から知ってた風にメモ書きしていく

実行結果を配列に入れる

@hoge = `ls`;

foreach $l (@hoge) {
    chop $l;
    print "'$l'\n";
}