Process all files in a directory AUTHORstmuk You want to process all files in a directory #!/usr/bin/env raku use v6; sub MAIN(:$dir = ".") { # print a string representation of each file's path for dir($dir).sort -> $file { say Str($file); } } # vim: expandtab shiftwidth=4 ft=perl6