Fixed a bug in guilt-pop introduced by the status file format switch
[guilt.git] / guilt-unapplied
blobe0f6cb5ed3fdf61e3e89b4b15d9f29c35d1321ca
1 #!/bin/bash
3 # Copyright (c) Josef "Jeff" Sipek, 2006, 2007
6 source "`dirname $0`/guilt"
8 n=`wc -l < $applied`
9 n=`expr $n + 1`
11 idx=0
12 for p in `get_series`; do
13 idx=`expr $idx + 1`
14 [ $idx -lt $n ] && continue
16 echo $p
17 done