#!/bin/rc
# make a dir structure for a new paper
# Mon Mar 21 14:18:40 MET 2005 Peter A. Cejchan <cej@gli.cas.cz | pac7@post.cz | pac@plan9.cz>
mkdir /usr/pac/wrk/txt/$1
mkdir /usr/pac/wrk/txt/$1/resources
mkdir /usr/pac/wrk/txt/$1/paper
mkdir /usr/pac/wrk/txt/$1/figs
touch /usr/pac/wrk/txt/$1/paper/title
touch /usr/pac/wrk/txt/$1/paper/author
touch /usr/pac/wrk/txt/$1/paper/abstract
touch /usr/pac/wrk/txt/$1/paper/keywords
touch /usr/pac/wrk/txt/$1/paper/body
touch /usr/pac/wrk/txt/$1/paper/references
touch /usr/pac/wrk/txt/$1/paper/acknowledgements
touch /usr/pac/wrk/txt/$1/paper/figures
touch /usr/pac/wrk/txt/$1/paper/plates
|