#!/bin/sh # # Written by Thiago Macieira # This file is in the public domain. # # Shows the changes to the subversion repository since the local copy # was last updated. # showdiff=false showlog=true while test $# -ge 1; do case "$1" in -d) showdiff=true shift ;; -D) showdiff=false shift ;; -l) showlog=true shift ;; -L) showlog=false shift ;; -h) cat <