Ignore *.html, *.1 and *.7 in Documentation/
[guilt.git] / guilt-applied
blob373e5f76489a264bccb78fab42df1c132244848e
1 #!/bin/bash
3 # Copyright (c) Josef "Jeff" Sipek, 2006, 2007
6 USAGE="[-c]"
7 . guilt
9 case $# in
11 # just output the regular series-style applied list
12 cat $applied | cut -d: -f 2-
16 if [ "$1" != "-c" ]; then
17 usage
20 cat $applied | sed -e 's/:/ /'
24 usage
26 esac