10 lines
147 B
Text
10 lines
147 B
Text
|
|
var content = [];
|
||
|
|
Dir.cwd.open.each { |file|
|
||
|
|
file ~~ < . .. > && next;
|
||
|
|
content.append(file);
|
||
|
|
}
|
||
|
|
|
||
|
|
content.sort.each { |file|
|
||
|
|
say file;
|
||
|
|
}
|