| tmaplisting.dcgi - geomyidae - A small C-based gopherd. | |
| git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfri… | |
| Log | |
| Files | |
| Refs | |
| Tags | |
| README | |
| LICENSE | |
| --- | |
| tmaplisting.dcgi (240B) | |
| --- | |
| 1 #!/bin/sh | |
| 2 # | |
| 3 # List all .md files in some directory and show a dir listing. | |
| 4 # Display map.gph first. | |
| 5 # | |
| 6 | |
| 7 [ -f map.gph ] && cat map.gph | |
| 8 [ -f .abstract ] && cat .abstract | |
| 9 | |
| 10 find *.md -printf "[0|%TY-%Tm-%Td %f|%f|server|port]\r\n" | sort -r | |
| 11 |