guilt: Document push_patch's new argument
[guilt.git] / guilt-applied
blob97a032cc02fe9a4821d7fb4255d864050c8b4d0e
1 #!/bin/bash
3 # Copyright (c) Josef "Jeff" Sipek, 2006, 2007
6 source "`dirname $0`/guilt"
8 USAGE="$USAGE [-c]"
10 case $# in
12 # just output the regular series-style applied list
13 cat $applied | cut -d: -f 2-
17 if [ "$1" != "-c" ]; then
18 print_usage
19 exit 1
22 cat $applied | sed -e 's/:/ /'
26 print_usage
27 exit 1
29 esac