| #!/bin/bashif [ ! -d usage ]; then  mkdir usagefifor cmd in change-passphrase check create delete extract info init list mount prune; do  FILENAME="usage/$cmd.rst.inc"  LINE=`echo -n attic $cmd | tr 'a-z- ' '-'`  echo -e ".. _attic_$cmd:\n" > $FILENAME  echo -e "attic $cmd\n$LINE\n::\n\n" >> $FILENAME  attic help $cmd --usage-only | sed -e 's/^/    /' >> $FILENAME  echo -e "\nDescription\n~~~~~~~~~~~\n" >> $FILENAME  attic help $cmd --epilog-only >> $FILENAMEdone
 |