This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| author => 'sergio', | |
| handle => 'smpb', | |
| country => 'portugal', | |
| complexity => { | |
| number => 4, | |
| depth => [ 'a', 'b', 'c' ] | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [user] | |
| name = Sérgio Bernardino | |
| email = code@sergiobernardino.net | |
| [color] | |
| branch = auto | |
| diff = auto | |
| grep = auto | |
| status = auto | |
| log = auto | |
| [color "status"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # print files in current dir, by date | |
| my @files = sort { -M $a <=> -M $b } grep { ! -d } glob "./*"; | |
| print "files by modified date:\n"; | |
| print "\t$_\n" for @files; |
NewerOlder