ref: b46537efa8eb679940ae74ca90f033e703ba62af
dir: /surl/
#!/bin/rc # # set site and surl then mkdir $surl # site=https://9p.sdf.org surl=/usr/web/l if(! test -d $surl){ echo $surl does not exist. exit } echo -n 'surl: ' url=`{read} if(! ~ $url ''){ last=`{ls -rt $surl|awk -F/ '{print $5}'|tail -1} if(~ $last ''){ last=0 } last=`{echo $last|tr a-z A-Z} next=`{echo 'obase=16; ' $last+1 | bc} mkdir $surl/$next echo '<html><meta http-equiv=refresh content="0; url='$url'"></html>' > $surl/$next/index.html echo $site/l/$next }