repo.or.cz
/
guilt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pop: Check if no patches are applied
[guilt.git]
/
guilt-next
blob
f38f1cc5f5d410a21115075f44981940617caaf0
1
#!/bin/sh
2
#
3
# Copyright (c) Josef "Jeff" Sipek, 2006, 2007
4
#
5
6
USAGE
=
""
7
.
`dirname
$0
`
/
guilt
8
9
if
[
$#
-ne
0
];
then
10
usage
11
fi
12
13
n
=
`wc -l <
$applied
`
14
n
=
$
((
$n
+
1
))
15
16
get_series |
awk
"{ if (NR ==
$n
) print \
$0
}"
17