/script/comdoc
#! | 11 lines | 10 code | 1 blank | 0 comment | 0 complexity | 025c862c4324ed9e644ca38057ffe7bc MD5 | raw file
1#!/bin/bash 2 3./script/gendoc 4cd www/doc 5git add . 6if [ -n "$1" ]; then 7 git commit "$@" 8else 9 git commit -m "Updated uberdoc files." 10fi 11cd ..