------------------------------------------------------------ Really? Filenames again?, (circumlunar), 11/29/2018 ------------------------------------------------------------ Ok, I'm back. I've re-done my phlog filename scheme on C.S. per the script bit that tomasino provided[1][2]. I ran into a few little issues, and had to make some adjustments. Tomasino provided this as an example of what to do for gophernicus: =ls -1r | grep -v 'gophermap' | awk '{printf "0%s\t%s\n", $1, $1}' Along with the instructions to name files starting with the date in YYYY-MM-DD format. But, in my phlog directory I have: 1. Other sub-directories. 2. Files prepended with 0_ that I want always on top. So, I modified things a tiny bit to accommodate my needs. my gophermap now has this under the header/title: =ls -1p | grep '^0_' | awk '{printf "0%s\t%s\n", $1, $1}' =ls -1p | grep '/' | awk '{printf "1%s\t%s\n", substr($1, 1, length($1)-1), $1}' =ls -1cp | grep -v -E 'gophermap|/|^0_' | awk '{printf "0%s\t%s\n", $1, $1}' I really like the way this shows up: the 0_ files are at the top where I want them, then I have my directories, and finally the sorted list of phlog posts. It's wonky, perhaps, but it works for me, and it solves the problems that the new year was going to bring. Now I need to bring it over to vernunftzentrum, which uses Geomyidae as the gopher server... we'll see how it adapts. [1] gopher://gopher.black:70/1/phlog/20181127-easy-dated-files-for-sorting [2] gopher://circumlunar.space:70/0/~tfurrows/phlog/2018-11-29_filenamesContinued.txt