揮発性のメモ2

知識をメモ書きしておく

実行結果を配列に入れる

@hoge = `ls`;

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