File: guilt-unapplied

package info (click to toggle)
guilt 0.35-1.2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,524 kB
  • ctags: 278
  • sloc: sh: 2,550; makefile: 119; perl: 42
file content (23 lines) | stat: -rwxr-xr-x 300 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh
#
# Copyright (c) Josef "Jeff" Sipek, 2006-2011
#

USAGE=""
if [ -z "$GUILT_VERSION" ]; then
	echo "Invoking `basename $0` directly is no longer supported." >&2
	exit 1
fi

_main() {

if [ $# -ne 0 ]; then
	usage
fi

n=`wc -l < $applied`
n=`expr $n + 1`

get_series | sed -n -e "$n,\$p"

}