ref: f3afdf563f784c0a5703496f48c1a72dff4617f4
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 'ibase=16;obase=16; ' $last+1 | bc|awk '{print $1}'}
mkdir $surl/$next
echo '<html><meta http-equiv=refresh content="0; url='$url'"></html>' > $surl/$next/index.html
echo $site/l/$next
}